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.

using android and joda time lib - the I am trying to convert the user's timezone in order to format it later to : 2012-11-12T21:45:00+02:00 for example.

        DateTimeZone zone = DateTimeZone.forID( TimeZone.getDefault().getID());

the above code fails - anyone know how can I take "Europe/London" (Timezone.getID) and convert it to an offset so I can put it in ISO 8601 format?

share|improve this question

1 Answer

If I correctly understood your objective you can use directly the SimpleDateFormat class.

Example code:

SimpleDateFormat sdf = new SimpleDateFormat(yyyy-MM-dd'T'HH:mm:ssZ, Locale.UK);
String formatedDate = sdf.format(new Date()));

You can see docmentation in SimpleDateFormat

Regards.

share|improve this answer
I need it in this format - 11-12T21:45:00+02:00 – Ranco Nov 23 '12 at 10:20
You are missing the year in your comment, but that's the format I used in the code above. – Luis Nov 23 '12 at 12:00

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.