将日期从字符串表示形式转换为数字表示形式并再次转换回来
是否有任何模式或已知方法可以将日期从字符串表示形式转换为数字表示形式,反之亦然?
背景:
我使用 Apache Derby 数据库作为 Java 程序的持久性。我想做这样的事情:
Select * from MyTable where date_column > 20100914154503 order by date_column DESC
// 20100914154503 = 2010-09-14 15:45:03
我的日期存储在我的java程序中我正在使用Joda Time( https://www.joda.org/joda-time/) DateTime 对象。
谢谢
Are there any patterns or known ways of converting a date from a string representation to a numerical representation and vice versa?
Background:
I am using an Apache Derby database as the persistence for a Java program. I would like to do something like this:
Select * from MyTable where date_column > 20100914154503 order by date_column DESC
// 20100914154503 = 2010-09-14 15:45:03
My dates are stored in my java program I am using Joda Time ( https://www.joda.org/joda-time/) DateTime object.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不太确定您实际上想要做什么或为什么需要使用字符串,但一般来说您应该使用
PreparedStatement
。然后,您可以使用java.sql.Timestamp
在PreparedStatement
中设置日期:I'm not too sure what you're actually trying to do or why you need to use a string at all, but in general you should use a
PreparedStatement
. Then you can just set the date in thePreparedStatement
using ajava.sql.Timestamp
:强烈考虑研究您的数据库如何管理日期和时间,因为它可能可以满足您的需要。请记住,您拥有的日期应存储在数据库表中的日期字段中。
Strongly consider looking into how your database manages dates and time, since it can probably do what you need. Remember that the date you have should be stored in a date field in the database table.