Trandent API
POST
COMMUNITY
java에서 천단위로 콤마를 넣으려면 String.format()을 사용하시면 됩니다.
ex)
int a = 10000;
String.format("%,d", a);
결과 : 10,000