开发者

Convert from java.util.date to JodaTime

开发者 https://www.devze.com 2023-02-12 09:36 出处:网络
I want to convert a java.util.Date to JodaTime 开发者_Go百科so as to carry out subtractions between dates. Is there a good concise way to convert from Date to JodaTime?java.util.Date date = ...

I want to convert a java.util.Date to JodaTime 开发者_Go百科so as to carry out subtractions between dates. Is there a good concise way to convert from Date to JodaTime?


java.util.Date date = ...
DateTime dateTime = new DateTime(date);

Make sure date isn't null, though, otherwise it acts like new DateTime() - I really don't like that.


http://joda-time.sourceforge.net/quickstart.html

Each datetime class provides a variety of constructors. These include the Object constructor. This allows you to construct, for example, DateTime from the following objects:

* Date - a JDK instant
* Calendar - a JDK calendar
* String - in ISO8601 format
* Long - in milliseconds
* any Joda-Time datetime class
0

精彩评论

暂无评论...
验证码 换一张
取 消