DecimalFormat을 이용하여 숫자에 콤마를 찍어 나타낼 수 있다. DecimalFormat 은 NumberFormat을 상속받고 있다. 1 2 3 4 5 6 7 8 9 10 DecimalFormat formatter = new DecimalFromat("###,###"); int price1 = 123; int price2 = 1234567; System.out.println("prince1==>"+formatter.format(price1); System.out.println("prince1==>"+formatter.format(price2); //결과 //123 //123,456 Colored by Color Scripter cs 소수점 나타내기 .#을 활용하여 콤마 뿐만아닌 소수점 자리수를 ..