Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在将时间戳插入数据库时遇到了一些问题(格式有问题。数据库接受dd.MM.yyyy)。当我将其转换Date为TimeStamp然后将其插入数据库时,它失败了。的格式TimeStamp是yyyy-MM-dd.
dd.MM.yyyy
Date
TimeStamp
yyyy-MM-dd
你有什么想法或建议吗?
如果您的数据库真的坚持使用 dd.MM.yyyy 并且您没有选择使用类似的东西,makedate(format, myDateInTheGivenFormat)那么您必须自己在 Java 中重新格式化。
makedate(format, myDateInTheGivenFormat)
用于SimpleDateFormat根据数据库的需要重新格式化您的日期。
SimpleDateFormat
请检查 java.sql.Date,这可以帮助你