정말 간단한 오류 였다.
integer 타입을 string type으로 변환하면서 자릿수에 맞게 앞에 0을 넣어주기 위해 아래와 같은 코드를 작성하였다.
String.format("%05",list.size());
근데 오잉? d를 빠트렸다.
String.format("%05d",list.size())
오류가 해결되었다.
정말 간단한 오류 였다.
integer 타입을 string type으로 변환하면서 자릿수에 맞게 앞에 0을 넣어주기 위해 아래와 같은 코드를 작성하였다.
String.format("%05",list.size());
근데 오잉? d를 빠트렸다.
String.format("%05d",list.size())
오류가 해결되었다.