Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要以某种方式格式化数字,它们应该以零开头以包含 5 位数字。
我不明白如何为 java 格式化程序创建模式。
我试过%4d了,但它没有加零。
%4d
%05d我相信应该这样做
%05d
int a=123; System.out.println(String.format("%05d",a));