java如何获得当前时间
时间: 2024-03-21 11:18:54 浏览: 67
在Java中,可以使用Java.util包中的Date类来获取当前时间。可以使用以下代码来获取当前时间:
```java
import java.util.Date;
public class CurrentTimeExample {
public static void main(String[] args) {
Date currentDate = new Date();
System.out.println("Current time is: " + currentDate);
}
}
```
输出结果将类似于以下内容:
```
Current time is: Tue Sep 22 11:14:52 UTC 2020
```
如果需要以特定格式显示时间,可以使用SimpleDateFormat类来格式化时间,例如:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class CurrentTimeExample {
public static void main(String[] args) {
Date currentDate = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
String formattedDate = formatter.format(currentDate);
System.out.println("Current time is: " + formattedDate);
}
}
```
输出结果将类似于以下内容:
```
Current time is: 22/09/2020 11:14:52
```
阅读全文