每个语言环境都使用默认资源包吗?
我有一个网页,其内容正在使用每个区域设置的默认资源包中的值?
I have a web page the content on which is using the values from the Default Resource bundle for every locale?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当无法找到给定区域设置的资源包时,它被用作后备包。您可以指定后备区域设置。如果未指定,则 JVM 的默认区域设置 (
Locale.getDefault()
) 将用作后备区域设置。教程:使用 ResourceBundles 进行本地化
It is used as a fallback bundle when no resource bundle could be located for a given Locale. You can specify a fallback locale. If none is specified then the default Locale of the JVM (
Locale.getDefault()
) is used as the fallback locale.Tutorial: Localization with ResourceBundles