“Formatory walut Java” Kod odpowiedzi

Pieniądze z formatu Java

double money = 100.1;
NumberFormat formatter = NumberFormat.getCurrencyInstance();
String moneyString = formatter.format(money);
System.out.println(moneyString);
Ugly Unicorn

Formatory walut Java

NumberFormat numberFormat = NumberFormat.getCurrencyInstance(locale);
//the user may have selected a different currency than the default for their locale
Currency currency = Currency.getInstance("GBP");
numberFormat.setCurrency(currency);
numberFormat.format(amount);
Nervous Newt

Odpowiedzi podobne do “Formatory walut Java”

Pytania podobne do “Formatory walut Java”

Więcej pokrewnych odpowiedzi na “Formatory walut Java” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu