JAVA中如何实现显示当前时间

437
2023/11/6 14:04:24
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在Java中,可以使用java.util.Date类和java.text.SimpleDateFormat类来实现显示当前时间。

import java.util.Date;
import java.text.SimpleDateFormat;

public class Main {
    public static void main(String[] args) {
        // 创建一个Date对象表示当前时间
        Date now = new Date();
        
        // 创建一个SimpleDateFormat对象,用于指定时间格式
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        
        // 使用SimpleDateFormat的format方法将Date对象格式化为字符串
        String currentTime = sdf.format(now);
        
        // 输出当前时间
        System.out.println("当前时间:" + currentTime);
    }
}

运行上述代码,将会输出当前时间的字符串表示,格式为yyyy-MM-dd HH:mm:ss,例如:“2022-01-01 12:34:56”。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: java如何创建字节数组