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

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

share|improve this question
67  
And now, the rest of us can google it here ... – Eric Wilson Sep 27 '11 at 20:39

8 Answers

up vote 455 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

share|improve this answer
27  
Extra tip : Replace the d with a x ("%05x") for hexadecimal – h3xStream Dec 17 '10 at 16:23
1  
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 '12 at 8:06
2  
If you have to do this for a large list of values, performance of DecimalFormat is at least 3 times better than String.format(). I'm in the process of doing some performance tuning myself and running the two in Visual VM shows the String.format() method accumulating CPU time at about 3-4 times the rate of DecimalFormat.format(). – Steve Ferguson May 1 at 17:56

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, '0')
share|improve this answer

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.

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

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(",",""));  
 }    
}  
share|improve this answer
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.

share|improve this answer
1  
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
public static final String zeroPad (int value, int size) {
  String s = "0000000000"+value;
  return s.substring(s.length() - size);
}
share|improve this answer
Bad performance – jaime Jan 23 '12 at 17:08
Unreadable/unclear seems like a more prominent issue. – mafu Oct 25 '12 at 14:41
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");}
        }
}
share|improve this answer
3  
Why the Yoda code? 5 > len? What advantage does it have? ...or is it merely a matter of taste? – Jaco Van Niekerk Jan 4 '12 at 8:07
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; 
}
}
share|improve this answer
Holy cow thats hardcore! – Derek Oct 23 '12 at 20:40

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.