Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get the current milliseconds from the Beginning of that day. So I would like to make the following calculation. 86400000-currMilliSecondsFromBeginningOfDay. Any help would be greatly appreciated. Thanks

share|improve this question
2  
currentTimeMillis() % (24*60*60*1000) – Subin Jun 18 '12 at 19:20
@SubinS First off thank you. Also I'm having trouble figuring out where I would put this in regards to my new DateTime() variable. – Mr. Smee Jun 18 '12 at 19:23
1  
long diff = currentTimeMillis() % (24*60*60*1000); DateTime diffDate = new DateTime(diff); – Subin Jun 18 '12 at 19:28

1 Answer

up vote 4 down vote accepted
long result = new DateTime().millisOfDay().getMillis();  

or

long result = new DateTime().getMillis() - new DateTime().withMillisOfDay(0).getMillis();  

or

long result = new LocalTime().get(DateTimeFieldType.millisOfDay());
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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