I am pulling timestamps from a file that I want to create a new DateTime for, but I want to create the DateTime at the floor of the hour (or any Joda Period will do).
How Can I do this?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Wohoo, found it. Simple like everything in Joda once I traced down the calls.

DateTime dt = new DateTime().hourOfDay().roundFloorCopy();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.