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...

link|improve this question

75% accept rate
14  
And now, the rest of us can google it here ... – Eric Wilson Sep 27 '11 at 20:39
feedback

8 Answers

up vote 261 down vote accepted
String.format("%05d", yournumber);

for zero-padding with length=5.

http://download.oracle.com/javase/7/docs/api/java/util/Formatter.html

link|improve this answer
1  
Cheers that worksa charm and is more succinct than what I came up with. – Omar Kooheji Jan 23 '09 at 15:35
1  
Then accept the answer, Omar. – Paul Tomblin Jan 23 '09 at 15:39
13  
Extra tip : Replace the d with a x ("%05x") for hexadecimal – h3xStream Dec 17 '10 at 16:23
Should I expect the options in String.format to be akin to printf() in C? – Shurane Apr 13 '11 at 18:23
Awesome! much better than the while loop to add zeros! – Jaco Van Niekerk Jan 4 at 8:06
feedback

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|improve this answer
feedback

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("%05d",number);

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

Cheers.

link|improve this answer
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
feedback
public static String zeroPad(long number, int width) {
   long wrapAt = (long)Math.pow(10, width);
   return String.valueOf(number % wrapAt + wrapAt).substring(1);
}

The only problem with this approach is that it makes you put on your thinking hat to figure out how it works.

link|improve this answer
The only problem? Try it with a negative number or with a width greater than 18. – Carlos Heuberger Oct 5 '11 at 19:56
Good point. And I guess it does more than was requested since it truncates at width (which wasn't explicitly asked for but is typically needed). It's a shame that Java's (painfully slow in comparison) String.format() doesn't support variable widths and doesn't support precision at all for integer specifiers. – johncurrier Oct 5 '11 at 23:30
feedback
import java.io.*;
class LeftZeroPad{
    public static void main(String[] args) throws IOException{
        System.out.println("Enter an integer,length less than 5:");
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String x = br.readLine();
        int len=x.length();
        int i;
        System.out.println("Length of the integer:" +len);
        if (5 > len) 
        { 
            for (i=0; i < (5-len); i++) 
            { 
                //For Right Zero Padd
                //x += '0';
                //For Left Zero Padd
                 x='0'+ x;      
            } 
            System.out.println("Interger after Left Zero Pad:" + x);
        } 
        else
            {System.out.println("Entered interger length is greater than 5");}
        }
}
link|improve this answer
1  
Why the Yoda code? 5 > len? What advantage does it have? ...or is it merely a matter of taste? – Jaco Van Niekerk Jan 4 at 8:07
feedback

Although many of the above approaches are good, but sometimes we need to format integers as well as floats. We can use this, particularly when we need to pad particular number of zeroes on left as well as right of decimal numbers.

import java.text.NumberFormat;  
public class NumberFormatMain {  

public static void main(String[] args) {  
    int intNumber = 25;  
    float floatNumber = 25.546f;  
    NumberFormat format=NumberFormat.getInstance();  
    format.setMaximumIntegerDigits(6);  
    format.setMaximumFractionDigits(6);  
    format.setMinimumFractionDigits(6);  
    format.setMinimumIntegerDigits(6);  

    System.out.println("Formatted Integer : "+format.format(intNumber).replace(",",""));  
    System.out.println("Formatted Float   : "+format.format(floatNumber).replace(",",""));  
 }    
}  
link|improve this answer
feedback
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<pad-(Integer.toString(x).length()); i++ )
    r+="0";
return r+x; 
}
}
link|improve this answer
feedback
public static final String zeroPad (int value, int size) {
  String s = "0000000000"+value;
  return s.substring(s.length() - size);
}
link|improve this answer
Bad performance – jaime Jan 23 at 17:08
feedback

Your Answer

 
or
required, but never shown

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