Example
In this example, we’re formatting numbers in percentage format.
Open Compiler
importjava.text.NumberFormat;importjava.util.Locale;publicclassI18NTester{publicstaticvoidmain(String[] args){Locale enLocale =newLocale("en","US");NumberFormat numberFormat =NumberFormat.getPercentInstance(enLocale);System.out.println(numberFormat.format(0.76));}}
Output
It will print the following result.
76%
Leave a Reply