将字符串转换为 BigDecimal

发布于 2024-12-01 23:16:48 字数 376 浏览 2 评论 0原文

我们与供应商合作,该供应商向我们发送需要处理的各种不同的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绅刃 2024-12-08 23:16:48

查看 NumberFormat 类。

Have a look at the NumberFormat class.

羁拥 2024-12-08 23:16:48

是的,你的第二点是合理可用的。您没有提供这样一个函数来转换实际上不是数字的数字(实际上,当与“,”一起使用时它会变成字符串)。而浮动中只允许使用句点。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文