Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Java by (10.2k points)
I want to convert a java.util.Date to JodaTime so as to carry out subtractions between dates. Is there a good concise way to convert from Date to JodaTime?

1 Answer

0 votes
by (46k points)

java.util.Date date = ...

DateTime dateTime = new DateTime(date);

Make certain date isn't negative, though, otherwise it seems like new DateTime() - I don't wish that.

Related questions

0 votes
1 answer
asked Jul 4, 2019 in SQL by Tech4ever (20.3k points)
0 votes
1 answer
0 votes
1 answer

Browse Categories

...