Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下字符串
String money = "USD0.00"
想把它转换成org.joda.money.Money
org.joda.money.Money
我是否需要在此处拆分货币单位和双倍值,并需要在 Money 中单独设置它。或者有任何库 api 可以转换它吗?
您可以使用Money.parse().
Money.parse()
从文档(强调我的)
字符串格式为 '$currencyCode $amount' ,其中两部分之间可能有零到多个空格。