在 Java 中比较 java.sql.Time 的正确方法
在 Java 中比较 Time
的正确方法是什么?
我的意思是java.sql.Time
。
或者有更好的方法可以比较乔达时间的时间吗?
Which is the right way to compare Time
in Java?
I mean java.sql.Time
.
Or is there a better way we can compare time in Joda Time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以使用 Joda Time,请这样做。在持久层将所有 sql 类型转换为 Joda 等效项,然后在业务逻辑中使用 Joda 对象。你不会后悔的,相信我。
LocalTime 可能是您想要使用的对象,那么您可以使用
compareTo()
、isAfter()
、isBefore()
。如果需要的话,将其合并到完整的日期时间也非常容易。If you can use Joda Time do so. Convert all sql types to Joda equivalents at the persistence layer and then work with Joda objects in your business logic. You won't regret it, believe me.
LocalTime is probably the object you want to use then you can use
compareTo()
,isAfter()
,isBefore()
. Its also really easy to merge this into a full DateTime if necessary.