如何在Java中向左边的数字添加左边填充的零?

时间:2010-04-24 15:54:36

标签: java string-formatting

我有一个整数100,如何将其格式化为00000100(总是长8位)?

8 个答案:

答案 0 :(得分:31)

试试这个:

String formattedNumber = String.format("%08d", number);

答案 1 :(得分:11)

你也可以使用类DecimalFormat,如下所示:

NumberFormat formatter = new DecimalFormat("00000000");
System.out.println(formatter.format(100)); // 00000100

答案 2 :(得分:3)

又一种方式。 ;)

int x = ...
String text = (""+(500000000 + x)).substring(1);

-1 => 99999999(九号补充)

import java.util.concurrent.Callable;
/* Prints.
String.format("%08d"): Time per call 3822
(""+(500000000+x)).substring(1): Time per call 593
Space holder: Time per call 730
 */
public class StringTimer {
    public static void time(String description, Callable<String> test) {
        try {
            // warmup
            for(int i=0;i<10*1000;i++)
                test.call();
            long start = System.nanoTime();
            for(int i=0;i<100*1000;i++)
                test.call();
            long time = System.nanoTime() - start;
            System.out.printf("%s: Time per call %d%n", description, time/100/1000);
        } catch (Exception e) {
            System.out.println(description+" failed");
            e.printStackTrace();
        }
    }

    public static void main(String... args) {
        time("String.format(\"%08d\")", new Callable<String>() {
            int i =0;
            public String call() throws Exception {
                return String.format("%08d", i++);
            }
        });
        time("(\"\"+(500000000+x)).substring(1)", new Callable<String>() {
            int i =0;
            public String call() throws Exception {
                return (""+(500000000+(i++))).substring(1);
            }
        });
        time("Space holder", new Callable<String>() {
            int i =0;
            public String call() throws Exception {
                String spaceHolder = "00000000";
                String intString = String.valueOf(i++);
                return spaceHolder.substring(intString.length()).concat(intString);
            }
        });
    }
}

答案 3 :(得分:2)

String.format使用格式字符串,其中描述了here

答案 4 :(得分:2)

如果Google Guava是一个选项:

String output = Strings.padStart("" + 100, 8, '0');

另外,Apache Commons Lang:

String output = StringUtils.leftPad("" + 100, 8, "0");

答案 5 :(得分:1)

如果您只是需要打印出来,这是一个较短的版本:

System.out.printf("%08d\n", number);

答案 6 :(得分:0)

这也有效:

int i = 53;
String spaceHolder = "00000000";
String intString = String.valueOf(i);
String string = spaceHolder.substring(intString.lenght()).contract(intString);

但其他例子更容易。

答案 7 :(得分:0)

如果您需要解析此字符串和/或支持i18n,请考虑扩展

java.text.Format 

对象。使用其他答案来帮助您获取格式。