ICU 货币区域设置 获取面额
有没有办法探测 ICU 货币区域设置的最小面额?例如,美国的价格为 0.01 美元,韩国 (ko_KR) 的价格为 ₩1。我想在 DecimalFormat
上调用 getRoundingIncrement()
code> object 可能会将其提供给我,但对于 en_US 和 ko_KR 都返回 0。
Is there a way to probe an ICU Currency Locale for it's minimal denomination? For example US's would be $0.01, Korea (ko_KR) would be ₩1. I thought calling getRoundingIncrement()
on the DecimalFormat
object may give it to me but that returns 0 for both en_US and ko_KR.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要查看:
getMinimumFractionDigits()
函数:这是不同语言环境的程序输出,似乎这就是您所需要的
You need to take a look on:
getMinimumFractionDigits()
function:This is the output of the program for different locales, seems it is what you need
感谢 Steve Loomis 和 Artyom 帮助我找到了解决方案。
Thank you to Steve Loomis and Artyom for helping me piece together a solution.