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