将字符串转换为货币

Converting String to Money

我有以下字符串

String money = "USD0.00" 

想把这个转换成org.joda.money.Money

这里是否需要拆分货币单位和double value,需要在Money.或者任何库 api 是否可以转换它?

您可以使用 Money.parse().

来自documentation(强调我的)

The string format is '$currencyCode $amount' where there may be zero to many spaces between the two parts.