Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- FLUTTER
- css
- android fragment
- Android Apk 이름 변경
- Android Apk
- MySQL
- Kotlin
- JavaScript
- Android
- Firebase
- jQuery
- android error
- Eclipse
- fragment
- apache gzip
- Android Apk 이름
- CSS사용법
- release Apk
- Program type already present
- release unsigned
- html
- error
- DataTable
- spring
- Exception
- Java
- R프로그래밍
- 안드로이드
- java error
- tomcat
Archives
- Today
- Total
selfstarter
JAVA DecimalFormat 본문
DecimalFormat
- 다양한 숫자형식을 지정할 수 있다
public class Main {
public static void main(String[] args) {
DecimalFormat money1 = new DecimalFormat("###,###"); // 콤마표시
DecimalFormat money2 = new DecimalFormat("0000000.###");// 숫자가 없는 공간은 0으로 채움
DecimalFormat decimal1 = new DecimalFormat("0.00"); // 소수점 2자리까지 표시
DecimalFormat decimal2 = new DecimalFormat(".###"); // 소수점 표시
DecimalFormat percent = new DecimalFormat("%"); // 100분율 변경
String format1 = money1.format(30000);
String format2 = money2.format(3000.12);
String format3 = decimal1.format(412.421312);
String format4 = decimal2.format(12.42230);
String format5 = percent.format(0.12);
System.out.println(format1);
System.out.println(format2);
System.out.println(format3);
System.out.println(format4);
System.out.println(format5);
}
}
'Server > Java' 카테고리의 다른 글
JAVA 추상클래스, 인터페이스 공통점, 차이점(abstract, interface) (0) | 2020.01.06 |
---|---|
자바 프로그램 실행 시간 구하기(System.currentTimeMillis()) (0) | 2019.12.30 |
이클립스 code coverage 툴 EclEmma (0) | 2019.12.27 |
Java List 삭제 (0) | 2019.07.13 |
이클립스 단축키(Eclipse Shortcut Key) 모음 (0) | 2019.06.26 |
Comments