1 2 3 4 5 | String amount = "9999999999"; int preAmount = Integer.parseInt(amount); DecimalFormat format = new DecimalFormat("###,###"); //변환할 Format 지정 String parseAmount = format.format(preAmount); System.out.println(parseAmount); | cs |
9,999,999,999 와 같이 변경된다.