gpt4 book ai didi

java - GetTime 不能正确显示零

转载 作者:行者123 更新时间:2023-11-29 06:58:11 25 4
gpt4 key购买 nike

我在我的系统中使用时间戳。一切正常,但我发现将 [12:2:2] 作为时间戳很烦人。因为您不知道它是 20 还是 2。

我又累又病,开始以为是编译器的问题。

    java.util.Date date= new java.util.Date();
Timestamp time = new Timestamp(date.getTime());
super.print("[" + time.getHours() + ":" + time.getMinutes() + ":" + time.getSeconds() + "] ");re

你们如何获得带零的正确时间戳?

最佳答案

看看 DateFormatSimpleDateFormat类。

SimpleDateFormat df = new SimpleDateFormat("HH:mm:ss");
df.format(new Date());

关于java - GetTime 不能正确显示零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30559766/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com