3

我想使用标准的 java MonetaryConversions 来转换货币。

乍一看,它工作得很好而且很简单:

    @Test
    public void testConversion()
    {
        FastMoney usd = FastMoney.of(1000, Monetary.getCurrency("USD"));
        usd.with(MonetaryConversions.getConversion("EUR"));
    }

但是,当我使用日元或墨西哥比索等名义价值较高的货币时,我发现会引发 ArithmeticExceptions

    @Test
    public void testArithmeticException()
    {
        FastMoney jpy = FastMoney.of(1000, Monetary.getCurrency("JPY"));
        jpy.with(MonetaryConversions.getConversion("EUR"));
    }

引发以下异常

java.lang.ArithmeticException: 0.0082769 can not be represented by this class, scale > 5

    at org.javamoney.moneta.FastMoney.getInternalNumber(FastMoney.java:197)
    at org.javamoney.moneta.FastMoney.multiply(FastMoney.java:388)
    at org.javamoney.moneta.FastMoney.multiply(FastMoney.java:84)
    at org.javamoney.moneta.spi.AbstractCurrencyConversion.apply(AbstractCurrencyConversion.java:118)
    at org.javamoney.moneta.FastMoney.with(FastMoney.java:594)
    at tech....GatewayTransactionConverterTest.testArithmeticException(GatewayTransactionConverterTest.java:207)

检查 FastMoney 的代码,我发现异常是硬编码的,我找不到任何可以减少的地方,例如规模。

但是有了这个开箱即用的java提供的转换是非常无用的,因为我不能转换很多货币。我无法想象没有人有这个问题。但是我用谷歌找不到任何东西。

4

1 回答 1

0

正如痴呆症在评论中提到的那样:

您可以使用基于 bigdecimal 的 Money 类吗? FastMoney 类基于 long,您不应该依赖它来进行高精度货币计算。

这对我有用。

于 2020-06-10T23:57:39.007 回答