Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to convert a String Date into a DateTime object for a particular timezone and in a particular format. How can I do it ?

String Date can be in any format used in the world. Example MM-DD-YYYY, YYYY-MM-DD, MM/DD/YY , MM/DD/YYYY etc. TimeZone can be any legal timezone specified by the user.

Example - convert YYYY-MM-DD into MM/DD/YY for the Pacific Timezone.

share|improve this question
Care to give 'particular' String, timezone and format? – Alexander Pogrebnyak Sep 13 '12 at 23:58
@AlexanderPogrebnyak - done. – david blaine Sep 14 '12 at 0:04
There are some examples at Joda Time – Pao Sep 14 '12 at 0:11

1 Answer

up vote 2 down vote accepted

Use DateTimeFormatterBuilder to build a formatter that is able to parse/format multiple DateTimeFormats, and set the resulting DateTimeFormatter to use a specified DateTimeZone:

DateTimeParser[] parsers = { 
  DateTimeFormat.forPattern("MM-dd-yyyy").getParser(),
  DateTimeFormat.forPattern("yyyy-MM-dd").getParser(),
  DateTimeFormat.forPattern("MM/dd/yyyy").getParser(),
  DateTimeFormat.forPattern("yyyy/MM/dd").getParser()
};

DateTimeFormatter formatter = new DateTimeFormatterBuilder()
  .append(null, parsers)
  .toFormatter()
  .withZone(DateTimeZone.UTC);

DateTime dttm1 = formatter.parseDateTime("01-31-2012");
DateTime dttm2 = formatter.parseDateTime("01/31/2012");
DateTime dttm3 = formatter.parseDateTime("2012-01-31");

To format a given DateTime you can just use dttm1.toString("yyyy-MM-dd")).

share|improve this answer
I added some lines and got an output. System.out.println(dttm1); System.out.println(dttm2); System.out.println(dttm3); Output is - 2012-01-31T00:00:00.000Z 2012-01-31T00:00:00.000Z 2012-01-31T00:00:00.000Z – david blaine Sep 16 '12 at 0:14
I am not able to understand the code properly. Does this convert all of the 4 formats in parsers to "YYYY-MM-DD" + 0s format ? How can I remove all those zeros ? – david blaine Sep 16 '12 at 0:18
1  
@davidblaine: That's because you have a DateTime object. If you just want a string in the format YYYY-MM-DD, call dttm1.toString("YYYY-MM-DD"). – João Silva Sep 16 '12 at 15:28

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.