Szukaj…


Format liczbowy

Różne kraje mają różne formaty liczb i biorąc pod uwagę to, możemy mieć różne formaty przy użyciu ustawień regionalnych Java. Korzystanie z ustawień regionalnych może pomóc w formatowaniu

Locale locale = new Locale("en", "IN");
NumberFormat numberFormat = NumberFormat.getInstance(locale);

używając powyższego formatu możesz wykonywać różne zadania

  1. Formatuj numer

    numberFormat.format(10000000.99);

  1. Formatuj walutę

    NumberFormat currencyFormat = NumberFormat.getCurrencyInstance(locale); currencyFormat.format(10340.999);

  1. Formatuj procent

    NumberFormat percentageFormat = NumberFormat.getPercentInstance(locale); percentageFormat.format(10929.999);

  2. Kontroluj liczbę cyfr

numberFormat.setMinimumIntegerDigits(int digits)
numberFormat.setMaximumIntegerDigits(int digits)
numberFormat.setMinimumFractionDigits(int digits)
numberFormat.setMaximumFractionDigits(int digits)


Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow