숫자(int)를 String으로 변경할 때, comma(,)를 같이 표현하고 싶을 때, 다양한 방법이 있지만,
java.x.text.NumberFormat을 활용하는 것도 좋은 방법이 될 수 있다.
import java.text.NumberFormat; @Test
public void a111222333() {
String numFormat = NumberFormat.getIntegerInstance().format(111222333);
System.out.println(numFormat);
Assert.equals("111,222,333", numFormat);
} //결과 111,222,333
'java core' 카테고리의 다른 글
[자바] autoboxing 실수 (실 사례) (0) | 2016.05.20 |
---|---|
List와 Set의 교집합(intersection) 구하기 (0) | 2016.04.12 |
java8 + centos7 이슈 (0) | 2016.01.05 |
IntStream, LongStream의 범위 - range, rangeClose 차이 및 예제 (0) | 2015.12.14 |
java8 ThreadLocal 초기화 (0) | 2015.12.14 |