gpt4 book ai didi

java - 将时间戳保存到数据库时出现错误时间戳格式必须为 yyyy-mm-dd hh :mm:ss[. fffffffff]

转载 作者:搜寻专家 更新时间:2023-10-30 19:45:48 26 4
gpt4 key购买 nike

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss a z");
sdf.setTimeZone(TimeZone.getTimeZone("US/Eastern"));
String DateToStoreInDataBase= sdf.format(obj1.getSomeDate().toGregorianCalendar().getTime());
System.out.println(emprSubDte);

Timestamp ts = Timestamp.valueOf(emprSubDte);

preparedStatement.setTimestamp(72,ts);

DateToStoreInDataBase 的 sysout 是 = "2014-19-13 12:19:59 PM EDT"当我试图将这个结果保存到数据库中时出现错误时间戳格式必须是 yyyy-mm-dd hh:mm:ss [.fffffffff].

我有相同的格式,但我仍然收到错误。

最佳答案

问题出在您的 SimpleDateFormat 实例化中。您正在使用这种模式:“yyyy-mm-dd hh:mm:ss a z”

月刊。它应该是“MM”而不是“mm”。 “mm”代表“小时中的分钟”。

引用:http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html

关于java - 将时间戳保存到数据库时出现错误时间戳格式必须为 yyyy-mm-dd hh :mm:ss[. fffffffff],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26344819/

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