在這個例子中,我們以百分比格式格式化數位。
檔案: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%