从 ResourceBundle 获取整数时,它会被格式化为逗号

发布于 2024-10-09 13:42:49 字数 170 浏览 3 评论 0原文

year.of.birth={0} was born on {1}

If I pass 2000 or 2008 to {1} the value gets parsed as 2,000 or 2,008. 

我不希望逗号作为翻译字符串的一部分。我应该如何避免这种情况?

year.of.birth={0} was born on {1}

If I pass 2000 or 2008 to {1} the value gets parsed as 2,000 or 2,008. 

I don't want the commas as part of my translated string. How should I avoid this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

抱猫软卧 2024-10-16 13:42:49

最简单的方法是将它们作为字符串传递:

msg.format("year.of.birth", name,  String.valueOf(2008));

另一种方法是在消息资源中指定数字格式(但只有当格式因语言环境而异时我才会这样做):

year.of.birth={0} was born in {1,number,####}

The easy way is to pass them as Strings:

msg.format("year.of.birth", name,  String.valueOf(2008));

An alternative is to specify the number format in the message resource (but I would only do that if the format can vary between locales):

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