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%
广告