gpt4 book ai didi

java - 为什么 DateFormat.format(date) 给出的时间与 date.toString() 不同?

转载 作者:行者123 更新时间:2023-12-01 18:35:28 24 4
gpt4 key购买 nike

我在我的代码中观察到这种奇怪的行为 -

Date executionDate = execDao.getExecutionDate(id);
System.out.println(executionDate);

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
System.out.println(dateFormat.format(executionDate));

这给出了输出

2014-03-05 22:10:46.0
2014-03-05 10:10:46

为什么输出的小时数不同?

最佳答案

第一个方法默认获取 24 时间。第二个获得 12 小时时间,因为这是您指定的。将第二个函数调用更改为 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 获取 24 小时格式。

http://developer.android.com/reference/java/text/SimpleDateFormat.html

关于java - 为什么 DateFormat.format(date) 给出的时间与 date.toString() 不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22210809/

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