Java - 숫자 자리수 채우기

String.format 을 사용하여 빈 자리를 0으로 채울 수 있다.

ex)
System.out.pringln( String.format("%03d", 3) );  => 003
System.out.pringln( String.format("%02d", 2) );  => 02
System.out.pringln( String.format("%02d", 10) );  => 10