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.

I am wondering if it is possible, using the String.format method in Java, to give an integer preceding zeros?

For example:

1 would become 001
2 would become 002
...
11 would become 011
12 would become 012
...
526 would remain as 526
...etc

At the moment I have tried the following code:

String imageName = "_%3d" + "_%s";

for( int i = 0; i < 1000; i++ ){
    System.out.println( String.format( imageName, i, "foo" ) );
}

Unfortunately, this precedes the number with 3 empty spaces. Is it possible to precede the number with zeros instead?

share|improve this question
possible duplicate of Add leading zeroes in Java – Jonathon May 17 '11 at 17:13
Thanks - I am checking it out – My Head Hurts May 17 '11 at 17:15
@Jonathon - thanks for the heads up - but that answer was a little more complicated than the one I thought I could (and did) get – My Head Hurts May 17 '11 at 17:21

3 Answers

up vote 26 down vote accepted

Use %03d in the format specifier for the integer. The 0 means that the number will be zero-filled if it is less than three (in this case) digits.

See the Formatter docs for other modifiers.

share|improve this answer
Thank you so much. That is exactly what I was looking for! +1 for the link aswell!!! (I'll accept your answer when it lets me! You were too quick :p ) – My Head Hurts May 17 '11 at 17:18
+1 after almost 2 year of answer :) – StinePike May 13 at 5:38
String.format("%03d", 1); // => "001"
share|improve this answer
Thanks maerics. Unfortunately Mat just beat you to the punch but +1 for the answer! – My Head Hurts May 17 '11 at 17:19
1  
Up for the high s/n of response. – karmakaze May 18 '11 at 0:50

Try using DecimalFormatting?

http://download.oracle.com/javase/6/docs/api/java/text/DecimalFormat.html

share|improve this answer
Thanks for the answer Joshua - I think that would have worked too, but might have been a bit more complicated! – My Head Hurts May 17 '11 at 17:20

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.