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

How JAVA format date

4/06/2011

instead of 0

4/06/2011

?

I need to use GregorianCalendar

GregorianCalendar today=new GregorianCalendar();
String todayStr = String.format("%1$tm/%1$td/%1$tY", today);

gives

04/06/2011

I want

4/06/2011

thanks in advance

share|improve this question
Shouldn't the month always be two digits? – Peter Lawrey Apr 6 '11 at 8:00

2 Answers

up vote 5 down vote accepted
DateFormat dateFormat1=new SimpleDateFormat("M/dd/yyyy");
System.out.println(dateFormat1.format(new Date()));

Output:

4/06/2011

Note: It might fail for month greater than Oct.

share|improve this answer
i need to use GregorianCalendar today=new GregorianCalendar(); String todayStr = String.format("%1$tm/%1$td/%1$tY", today); – jenifer Apr 6 '11 at 8:02
+1: I think you mean "M/dd/yyyy" as its US date format. ;) – Peter Lawrey Apr 6 '11 at 8:02
@jenifer, If you cannot change it, why do you ask the question? What can you change? – Peter Lawrey Apr 6 '11 at 8:03
@jenifer I think you need string representation of date with mentioned format, I have already answered for that. – Jigar Joshi Apr 6 '11 at 8:03
@Peter was on the way. – Jigar Joshi Apr 6 '11 at 8:03
show 4 more comments

You can't do that using String.format(...). See the documentation, there is no such converter as month without leading zeros. You can either use the DateFormat or do it somehow manually (strip the leading zero from month if present).

share|improve this answer
that's why i ask, it seems dateFormat is a must – jenifer Apr 6 '11 at 8:26
Yes, and the answer is: It is a must :) – Jan Zyka Apr 6 '11 at 8: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.