vote up 0 vote down star

Hey guys,

Can someone show me a piece of java code that parses this date:

2009-08-05

INTO THIS GMT DATE:

2009/217:00:00

====

what i have so far is:

       java.text.SimpleDateFormat format = new SimpleDateFormat("yyyy-mm-dd");

       java.util.Calendar cal = Calendar.getInstance(new SimpleTimeZone(0, "GMT"));
       format.setCalendar(cal);
       java.util.Date date = format.parse(sdate);

but its not working

flag

44% accept rate
Note: The asker clarified that 217 is meant to represent the 217th day of the year. – Quinn Taylor Aug 10 at 22:56

2 Answers

vote up 3 vote down check

Here is the format you're looking for:

Date date = new SimpleDateFormat("yyyy-MM-dd").parse("2009-08-05");
String parsedDate = new SimpleDateFormat("yyyy/D:HH:mm").format(date);
link|flag
thank you so much for your quick and accurate response – unknown (yahoo) Aug 10 at 22:53
vote up 0 vote down
format.setTimeZone(TimeZone.getTimeZone("GMT"));

That's how to set it to GMT at least. Not sure where you are getting 2009/217 from 2009-08-05

link|flag
August 5th is the 217th day of the year. – Nate Aug 10 at 22:29

Your Answer

Get an OpenID
or

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