java中如何打印出00:00:00的时间

    Date date = new Date(0);

SimpleDateFormat format = new SimpleDateFormat("hh:mm:ss");

format.setTimeZone(TimeZone.getTimeZone("GMT+0"));

System.out.println(format.format(date));

打印出来的时间是
时间结果

如何才能打印出00:00:00的时间呢?

回答:

new SimpleDateFormat("HH:mm:ss");

认真看文档好么。

以上是 java中如何打印出00:00:00的时间 的全部内容, 来源链接: utcz.com/p/180665.html

回到顶部