vote up 14 vote down star
2

How do you left pad an int with zeros in java when converting to a string?

I'm basically looking to pad out integers up to 9999 with the leading zeros.

E.g. 1 = "0001"

I know this is probably simple and as a parallel task I'm googling it, but SO is super quick when it comes to inane questions I should know the answer to...

flag

66% accept rate

5 Answers

vote up 32 vote down check
String.format("%05d", yournumber);

for zero-padding with length=5.

see http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html

link|flag
Cheers that worksa charm and is more succinct than what I came up with. – Omar Kooheji Jan 23 '09 at 15:35
Then accept the answer, Omar. – Paul Tomblin Jan 23 '09 at 15:39
vote up -5 vote down

pseudocode cause I haven't done java in a while but the following will work;

int number = whatever;

string num = (string)number;

while(num.length <4) num = "0" + num;

link|flag
Thats the inelegant way... Code must flow... – Omar Kooheji Jan 23 '09 at 15:26
Yuck. You're creating and throwing away 3 or 4 strings. – Paul Tomblin Jan 23 '09 at 15:28
Please ... be nice to your GC. Use a StringBuilder! – Mark Renouf Jan 23 '09 at 15:28
Maybe next time I'll think before I post. doh >| – SnOrfus Jan 23 '09 at 15:37
Wanna get a Peer Pressure badge? – asalamon74 Jan 23 '09 at 16:13
show 1 more comment
vote up 3 vote down

Found this example... Will test...

import java.text.DecimalFormat;
class TestingAndQualityAssuranceDepartment
{
    public static void main(String [] args)
    {
        int x=1;
        DecimalFormat df = new DecimalFormat("00");
        System.out.println(df.format(x));
    }
}

Tested this and:

String.format("%05",number);

Both work, for my purposes I think Stirng.Format is better and more succinct.

Cheers.

link|flag
1  
Yes, I was going to suggest DecimalFormat because I didn't know about String.format, but then I saw uzhin's answer. String.format must be new. – Paul Tomblin Jan 23 '09 at 15:48
It's similar how you'd do it in .Net Except the .Net way looks nicer for small numbers. – Omar Kooheji Jan 23 '09 at 16:00
vote up 5 vote down

If you for any reason use pre 1.5 Java then may try with Apache Commons Lang method

org.apache.commons.lang.StringUtils.leftPad(String str, int size)
link|flag
vote up 0 vote down

public class leftpadding { public static void main(String[] args) { for (int i = 1; i < 10000; i++) { System.out.print(padded(i,5)+ " "); }
} public static String padded(int x,int pad) { String r=""; for (int i=0; i

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.