亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

如何在Java中實現貨幣的格式化輸出

小樊
90
2024-09-07 13:08:23
欄目: 編程語言

在Java中,可以使用NumberFormat類來實現貨幣的格式化輸出

import java.text.NumberFormat;
import java.util.Locale;

public class CurrencyFormatting {
    public static void main(String[] args) {
        double amount = 123456789.123;

        // 使用默認語言環境的貨幣格式
        NumberFormat defaultCurrencyFormat = NumberFormat.getCurrencyInstance();
        System.out.println("默認語言環境的貨幣格式: " + defaultCurrencyFormat.format(amount));

        // 使用指定語言環境的貨幣格式(例如:美國)
        Locale usLocale = new Locale("en", "US");
        NumberFormat usCurrencyFormat = NumberFormat.getCurrencyInstance(usLocale);
        System.out.println("美國語言環境的貨幣格式: " + usCurrencyFormat.format(amount));

        // 使用指定語言環境的貨幣格式(例如:中國)
        Locale chinaLocale = new Locale("zh", "CN");
        NumberFormat chinaCurrencyFormat = NumberFormat.getCurrencyInstance(chinaLocale);
        System.out.println("中國語言環境的貨幣格式: " + chinaCurrencyFormat.format(amount));
    }
}

運行上述代碼,將會看到如下輸出:

默認語言環境的貨幣格式: ¥123,456,789.12
美國語言環境的貨幣格式: $123,456,789.12
中國語言環境的貨幣格式: ¥123,456,789.12

請注意,默認語言環境和中國語言環境的貨幣符號相同,這是因為我的系統默認語言環境是中文。你可以根據需要選擇其他語言環境。

0
上虞市| 那曲县| 舞钢市| 深泽县| 康乐县| 高州市| 潞西市| 大悟县| 育儿| 扶风县| 安平县| 临夏市| 五常市| 筠连县| 邹城市| 漳平市| 南昌市| 丹江口市| 东台市| 郴州市| 年辖:市辖区| 东乡县| 万年县| 崇明县| 大石桥市| 新绛县| 阿合奇县| 承德县| 子长县| 万州区| 通化市| 沙田区| 扶沟县| 鹤壁市| 闸北区| 保亭| 万宁市| 东丰县| 宣恩县| 岫岩| 东宁县|