티스토리 뷰

카테고리 없음

JAVA 형식 맞추기

[czar] 2006. 11. 2. 23:53
import java.text.*;
String str = new DecimalFormat ( "###,###.###" ).format ( 123456.789 );
//결과 123,456.789

String str = new DecimalFormat ( "###,###.###;-"###,###.###" ).format ( -123456.789 );
//결과 -123,456.789

String str = new DecimalFormat ( "###,###.##" ).format ( 123.456 );
//결과 123.45

String str = new DecimalFormat ( "###.###%" ).format ( 0.123 );
//결과 12.3%

String str = new DecimalFormat ( "000000.000" ).format ( 123.45 );
//결과 000123.450

String str = new DecimalFormat ( "$###,###.###" ).format ( 12345.67 );
//결과 $12,345.67

String str = new DecimalFormat ( "\u005a###,###.###" ).format ( 12345.67 );
//결과 엔12,345.67
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2026/01   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
글 보관함