How do I convert a 7-digit julian date into a format like MM/dd/yyy?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Found a useful site: http://www.rgagnon.com/javadetails/java-0506.html This should do the trick:
|
||||
|
|
|
Here is example code - assuming you mean the Julian date astronomers use. |
|||
|
|
|
Do you really mean a Julian date, like astronomers use? Ordinal dates, which are specified as a year (four digits) and the day within that year (3 digits), are sometimes incorrectly called Julian dates.
This will give you the date at 00:00 local time; you may want to set the timezone on the calendars to GMT instead, depending on the application. |
||||
|
|
|
I see there are enough answers already provided. But any calendar related question is only half answered without mentioning joda-time ;-). Here is how simple it is with this library
|
|||
|
|