gpt4 book ai didi

java - 如何使用没有货币符号或美元符号的货币格式

转载 作者:行者123 更新时间:2023-12-01 20:10:01 26 4
gpt4 key购买 nike

我有:

 ${amount?string.currency} 

它很好地格式化了我的 BigDecimal,唯一的是它包含我不想要的货币符号(美元符号)。如何在不使用 string["0.##"] 明确指定数字格式的情况下禁用此功能?

最佳答案

当前(2.3.27)?string.currency 始终表示 Java 提供的默认货币格式。因此,您可以定义自定义格式并像 amount?string.@currency 一样使用它,而不是更改它(其中 currency 只是您为格式指定的名称) .

自定义格式是用 Java 定义的。来自手册(http://freemarker.org/docs/pgui_config_custom_formats.html#pgui_config_custom_formats_ex_alias):

// Where you initalize the application-wide Configuration singleton:
Configuration cfg = ...;

Map<String, TemplateNumberFormatFactory> customNumberFormats = new HashMap<>();
customNumberFormats.put("price",
new AliasTemplateNumberFormatFactory(",000.00"));
customNumberFormats.put("weight",
new AliasTemplateNumberFormatFactory("0.##;; roundingMode=halfUp"));
cfg.setCustomNumberFormats(customNumberFormats);

然后在模板中:

${product.price?string.@price}
${product.weight?string.@weight}

关于java - 如何使用没有货币符号或美元符号的货币格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46803507/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com