Java Internalization - รูปแบบเปอร์เซ็นต์
ในตัวอย่างนี้เรากำลังจัดรูปแบบตัวเลขในรูปแบบเปอร์เซ็นต์
IOTester.java
import java.text.NumberFormat;
import java.util.Locale;
public class I18NTester {
public static void main(String[] args) {
Locale enLocale = new Locale("en", "US");
NumberFormat numberFormat = NumberFormat.getPercentInstance(enLocale);
System.out.println(numberFormat.format(0.76));
}
}
เอาต์พุต
มันจะพิมพ์ผลลัพธ์ต่อไปนี้
76%
พิมพ์