반응형
int temp = 1234567;
DecimalFormat formatter = new DecimalFormat("###,###");
System.out.println("금액 >>> " + formatter.format(temp) + " 원");
결과
금액 >>> 1,234,567 원
반응형
'Backend > Java' 카테고리의 다른 글
외부 파일 읽어서 String 으로 출력하기 (2) | 2020.11.27 |
---|---|
JSTL 시간 select list (0) | 2020.11.09 |
JSTL 년도 select List (0) | 2020.11.09 |
파일 다운로드 최신 (0) | 2020.10.29 |
properties && @Value 사용하기 (0) | 2020.09.04 |