USD Currency Formatting in Java

前端 未结 3 1893
醉梦人生
醉梦人生 2020-12-08 14:26

In Java, how can I efficiently convert floats like 1234.56 and similar BigDecimals into Strings like $1,234.56

I\'m looking for the followi

3条回答
  •  春和景丽
    2020-12-08 15:21

    There's a locale-sensitive idiom that works well:

    import java.text.NumberFormat;
    
    // Get a currency formatter for the current locale.
    NumberFormat fmt = NumberFormat.getCurrencyInstance();
    System.out.println(fmt.format(120.00));
    

    If your current locale is in the US, the println will print $120.00

    Another example:

    import java.text.NumberFormat;
    import java.util.Locale;
    
    Locale locale = new Locale("en", "UK");
    NumberFormat fmt = NumberFormat.getCurrencyInstance(locale);
    System.out.println(fmt.format(120.00));
    

    This will print: £120.00

提交回复
热议问题