Java-Internalisierung - Formatierungsprozentsätze
In diesem Beispiel formatieren wir Zahlen im Prozentformat.
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));
}
}
Ausgabe
Das folgende Ergebnis wird gedruckt.
76%
Drucken