Is there a better way of getting this result? This function fails if num has more digits than digits, and I feel like it should be in the library somewhere (like Integer.toString(x,"%3d") or something)

static String intToString(int num, int digits) {
    StringBuffer s = new StringBuffer(digits);
    int zeroes = digits - (int) (Math.log(num) / Math.log(10)) - 1; 
    for (int i = 0; i < zeroes; i++) {
        s.append(0);
    }
    return s.append(num).toString();
}
link|improve this question

70% accept rate
feedback

5 Answers

up vote 9 down vote accepted

Another option is to use DecimalFormat to format your numeric String. Here is one other way to do the job without having to use String.format if you are stuck in the pre 1.5 world:

 static String intToString(int num, int digits) {
    assert digits > 0 : "Invalid number of digits";

    // create variable length array of zeros
    char[] zeros = new char[digits];
    Arrays.fill(zeros, '0');
    // format number as String
    DecimalFormat df = new DecimalFormat(String.valueOf(zeros));

    return df.format(num);
}
link|improve this answer
Thanks, I thought I was the only one pre-1.5 (1.4.2) – drhorrible Nov 9 '08 at 18:52
feedback

Since Java 1.5 you can use the String.format method. For example, to do the same thing as your example:

String format = String.format("%%0%dd", digits);
String result = String.format(format, num);
return result;

In this case, you're creating the format string using the width specified in digits, then applying it directly to the number. The format for this example is converted as follows:

%% --> %
0  --> 0
%d --> <value of digits>
d  --> d

So if digits is equal to 5, the format string becomes "%05d" which specifies an integer with a width of 5 printing leading zeroes. See the java docs for String.format for more information on the conversion specifiers.

link|improve this answer
1  
Good to document when the mechanism became available. – Jonathan Leffler Nov 9 '08 at 8:26
This is a better mechanism – Jigar Shah Mar 12 at 15:10
feedback

String.format (http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html#syntax)

In your case it will be: String.format("%03d", num) - 0 - to pad with zeros, 3 - to set width to 3

link|improve this answer
feedback

In case of your jdk version less than 1.5, following option can be used.

    int iTest = 2;
    StringBuffer sTest = new StringBuffer("000000"); //if the string size is 6
    sTest.append(String.valueOf(iTest));
    System.out.println(sTest.substring(sTest.length()-6, sTest.length()));
link|improve this answer
feedback

How about just:

public static String intToString(int num, int digits) {
        String output = Integer.toString(num);
        while (output.length() < digits) output = "0" + output;
        return output;
    }
link|improve this answer
(1) That's going to return 0num0num0num etc, instead of 00000num (2) Lots of string concatenations with "+" are a bad idea performance-wise. Better to preallocate a StringBuffer or StringBuilder of length 'digits' – drhorrible Mar 29 '11 at 15:58
1  
"(1) That's going to return 0num0num0num etc, instead of 00000num" - You are wrong with this comment... num is not within the loop. – Nappy Jul 11 '11 at 10:26
feedback

Your Answer

 
or
required, but never shown

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