16 votes

Comment ajouter des zéros à gauche à un nombre en Java ?

J'ai un nombre entier 100 comment puis-je le formater pour qu'il ressemble à 00000100 (toujours composé de 8 chiffres) ?

34voto

Andrew Hare Points 159332

Essayez ça :

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

11voto

João Silva Points 36619

Vous pouvez également utiliser la classe DecimalFormat comme ça :

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

3voto

Peter Lawrey Points 229686

Encore une autre façon. ;)

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

-1 => 99999999 (complément à neuf)

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);
            }
        });
    }
}

2voto

stacker Points 34209

String.format utilise un chaîne de format qui est décrit aquí

2voto

Dag Points 1566

Si Google Guava est une option :

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

Alternativement Apache Commons Lang :

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

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X