[JAVA] 천단위 콤마 처리

By | 4월 2, 2010

java.text.DecimalFormat df = new java.text.DecimalFormat("#,###");
double amtDouble = 1234567890.123456;
String amtString = df.format(amtDouble);

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments