java获取当前时间date型
时间: 2023-11-25 16:51:58 浏览: 98
以下是两种Java获取当前时间Date型的方法:
1.使用Java.util.Date类
```java
import java.util.Date;
Date date = new Date();
System.out.println(date); // 输出当前时间,例如:Tue Oct 19 15:25:36 CST 2021
```
2.使用System.currentTimeMillis()方法
```java
Date date = new Date(System.currentTimeMillis());
System.out.println(date); // 输出当前时间,例如:Tue Oct 19 15:25:36 CST 2021
```
相关问题
java获取当前时间date型yyyy-MM-dd
在Java中,你可以使用`java.time`包下的`LocalDate`类以及`DateTimeFormatter`类来获取当前日期,并按照"yyyy-MM-dd"的格式进行格式化。以下是一个简单的示例:
```java
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
// 获取当前日期
LocalDate currentDate = LocalDate.now();
// 定义日期格式化器
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
// 格式化日期并打印
String formattedDate = currentDate.format(formatter);
System.out.println("当前日期: " + formattedDate);
}
}
```
运行这个代码后,你会看到类似这样的输出:`当前日期: 2023-06-22`(这里的日期会根据实际执行的时间变化)。
Java获取当前时间date
可以使用Java中的Date类来获取当前时间。可以按照以下方式获取当前时间:
```java
import java.util.Date;
public class CurrentDate {
public static void main(String[] args) {
Date currentDate = new Date();
System.out.println(currentDate);
}
}
```
输出结果类似于:`Fri Jul 09 10:08:23 CST 2021`。如果你想以特定的格式显示当前时间,可以使用SimpleDateFormat类。例如,以下代码将以“yyyy-MM-dd HH:mm:ss”格式显示当前时间:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class CurrentDate {
public static void main(String[] args) {
Date currentDate = new Date();
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = dateFormat.format(currentDate);
System.out.println(formattedDate);
}
}
```
输出结果类似于:`2021-07-09 10:08:23`。
阅读全文