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.

What is the simplest way to convert 23-Mar-2011 to 23-03-2011 in Java?


Thanks everyone. This seem to solve the issue:

try { 
Calendar cal = Calendar.getInstance(); 
cal.setTime(new SimpleDateFormat("dd-MMM-yyyy").parse("24-Nov-2002")); 
SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy");
System.out.println(sdf.format(cal.getTime())); 
} catch (ParseException e) { e.printStackTrace(); }
share|improve this question
Thanks everyone found the answer.try { Calendar cal = Calendar.getInstance(); cal.setTime(new SimpleDateFormat("dd-MMM-yyyy").parse("24-Nov-2002")); SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy"); System.out.println(sdf.format(cal.getTime())); } catch (ParseException e) { e.printStackTrace(); } – Viren Pushpanayagam Mar 23 '11 at 5:45

4 Answers

up vote 5 down vote accepted

Have you looked at SimpleDateFormat ?

share|improve this answer
Yes, I did. But getting a java.text.ParseException – Viren Pushpanayagam Mar 23 '11 at 5:37
please post your code here – Jigar Joshi Mar 23 '11 at 5:38
Thanks for your help. – Viren Pushpanayagam Mar 23 '11 at 5:50
you are always welcome (also to upvote/mark it as answer , as it is for you) – Jigar Joshi Mar 23 '11 at 5:51

Try this

String strDate="23-Mar-2011";
SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MMM-yyyy");
try {
    Date varDate=dateFormat.parse(strDate);
    dateFormat=new SimpleDateFormat("dd-MM-yyyy");
    System.out.println("Date :"+dateFormat.format(varDate));
}catch (Exception e) {
    // TODO: handle exception
    e.printStackTrace();
}
share|improve this answer

Here's a simpler version of your code:

DateFormat shortFormat = new SimpleDateFormat("dd-MM-yyyy",Locale.ENGLISH);
DateFormat mediumFormat = new SimpleDateFormat("dd-MMM-yyyy",Locale.ENGLISH);
String s = "23-Mar-2011";
String shortDate = shortFormat.format(mediumFormat.parse(s));
System.out.println(shortDate);
share|improve this answer

SimpleDateFormat format1 = new SimpleDateFormat("dd-MMM-yyyy");

SimpleDateFormat format2 = new SimpleDateFormat("dd-MM-yyyy");

Date date = format1.parse("24-Nov-2002");

System.out.println(format2.format(date));

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.