将字符串转换为 BigDecimal
我们与供应商合作,该供应商向我们发送需要处理的各种不同的 XML 消息。 对于价格等值,有时他们会以这种格式向我们发送数字 - 123.45 当我们运行代码 BigDecimal bd = new BigDecimal("123.45");,
它工作正常
不幸的是,他们有时会以这种格式向我们发送数字 - 123,45 当我们运行代码 BigDecimal bd = new BigDecimal("123,45");,
我们得到一个 NumberFormatException
有谁知道有一个 API 可以接受包含 .或 , 并可以将其转换为 BigDecimal,或者我们是否需要先进行字符串替换并将 , 的所有实例转换为 .?
谢谢
We work with a vendor that sends us various different XML messages that we need to process.
For values such as price, sometimes they send us the number in this format - 123.45
When we run the code BigDecimal bd = new BigDecimal("123.45");,
it works fine
Unfortunately, they sometimes send us the number in this format - 123,45
When we run the code BigDecimal bd = new BigDecimal("123,45");,
we get a NumberFormatException
Does anyone know of an API that can accept a string that contains a . or a , and can convert it to a BigDecimal or will we need to do a String replace first and convert all instances of , to .?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 NumberFormat 类。
Have a look at the NumberFormat class.
是的,你的第二点是合理可用的。您没有提供这样一个函数来转换实际上不是数字的数字(实际上,当与“,”一起使用时它会变成字符串)。而浮动中只允许使用句点。
Yes your second point is reasonably usable. You are not provided with such a function that converts a number( actually it becomes a string when a ',' is used with it) that is not actually a number. Whereas only periods are allowed in a float.