Java Internalization - คลาส DecimalFormat
คลาส java.text.DecimalFormat ใช้สำหรับการจัดรูปแบบตัวเลขตามรูปแบบที่กำหนดเองและตามโลแคล
ตัวอย่าง - จัดรูปแบบตัวเลข
ในตัวอย่างนี้เรากำลังจัดรูปแบบตัวเลขตามรูปแบบที่กำหนด
IOTester.java
import java.text.DecimalFormat;
public class I18NTester {
public static void main(String[] args) {
String pattern = "####,####.##";
double number = 123456789.123;
DecimalFormat numberFormat = new DecimalFormat(pattern);
System.out.println(number);
System.out.println(numberFormat.format(number));
}
}
เอาต์พุต
มันจะพิมพ์ผลลัพธ์ต่อไปนี้
1.23456789123E8
1,2345,6789.12
พิมพ์