我正在尝试创建一个使用货币单位符号的MonetaryAmountFormat

MonetaryAmountFormat format = MonetaryFormats.getAmountFormat(
  AmountFormatQueryBuilder.of(Locale.GERMANY)
                          .set(org.javamoney.moneta.format.CurrencyStyle.SYMBOL)
                          .set("pattern", "#,##0.##¤")
                          .build()
);


(取自How to format MonetaryAmount with currency symbol?Customizing a MonetaryAmountFormat using the Moneta (JavaMoney) JSR354 implemenation)。

Java / Maven项目在运行时(而非编译时)范围内依赖于moneta。看来类CurrencyStyle及其值SYMBOL是moneta(Java货币参考实现)的一部分,而不是Java-Money API的一部分。因此,代码无法编译。

我创建了这个丑陋的解决方法:

String currencyStyle = "org.javamoney.moneta.format.CurrencyStyle";
final Enum<?> SYMBOL = Enum.valueOf((Class<? extends Enum>) Class.forName(currencyStyle), "SYMBOL");
MonetaryAmountFormat format = MonetaryFormats.getAmountFormat(
  AmountFormatQueryBuilder.of(Locale.GERMANY)
                          .set(currencyStyle, SYMBOL)
                          .set("pattern", "#,##0.##¤")
                          .build()
);


是否可以创建一个使用货币单位符号的MonetaryAmountFormat而不使用此技巧?

最佳答案

也许可以使用DecimalFormat替代MonetaryAmountFormat

缺点:


NumberMonetaryAmount之间的转换必须手动完成
仅在您没有更改货币单位时有效(单位是从格式而不是从MonetaryAmount对象获取的)


例:

NumberFormat format = new DecimalFormat("#,##0.##¤", DecimalFormatSymbols.getInstance(Locale.GERMANY));

// format
MonetaryAmount source = ...;
String formattedAmount = format.format(source.getNumber());

// parse
Number numberAmount = format.parse(formattedAmount);
MonetaryAmount target = Monetary.getDefaultAmountFactory().setCurrency("EUR").setNumber(numberAmount).create()

09-26 14:31