要在Java中显示当前时间,可以使用java.util.Date
和java.text.SimpleDateFormat
两个类。
下面是一个示例代码,显示当前时间的格式为"yyyy-MM-dd HH:mm:ss":
import java.util.Date;
import java.text.SimpleDateFormat;
public class CurrentTime {
public static void main(String[] args) {
// 创建一个Date对象,表示当前时间
Date now = new Date();
// 创建一个SimpleDateFormat对象,指定时间格式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 使用SimpleDateFormat对象格式化Date对象,得到时间字符串
String currentTime = sdf.format(now);
// 输出时间字符串
System.out.println("当前时间:" + currentTime);
}
}
上述代码会输出类似以下内容的结果:
当前时间:2022-01-01 12:34:56
你可以根据需要调整时间格式,例如:“yyyy/MM/dd HH:mm:ss”、"yyyy年MM月dd日 HH时mm分ss秒"等。