How to get the default ResourceBundle regardless of current default Locale(无论当前的默认语言环境如何,如何获取默认 ResourceBundle)
问题描述
我在类路径中有三个资源文件:
I have three resource files in class path:
labels.properties:
labels.properties:
language = Default
labels_en.properties:
labels_en.properties:
language = English
labels_fr.properties:
labels_fr.properties:
language = French
有没有办法获得一个始终加载 labels.properties 的 ResourceBundle 对象,无论我的默认 Locale 是什么?
Is there a way to get a ResourceBundle object that always loads labels.properties NO MATTER what my default Locale is?
ResourceBundle.getBundle("labels") 返回与当前默认语言环境对应的那个(如预期的那样).
ResourceBundle.getBundle("labels") returns the one corresponding to the current default locale (as expected).
我能找到的唯一方法是将默认语言环境设置为不存在的语言环境,但这可能会破坏其他模块.
The only way I can find is to set the default locale to a non-existing locale, but this may break other modules.
谢谢!
Locale.setDefault( Locale.ENGLISH);
Assert.assertEquals( "English", ResourceBundle.getBundle( "labels").getString( "language"));
Locale.setDefault( Locale.FRENCH);
Assert.assertEquals( "French", ResourceBundle.getBundle( "labels").getString( "language"));
Assert.assertEquals( "French", ResourceBundle.getBundle( "labels", new Locale( "do-not-exist")).getString( "language"));
Locale.setDefault( new Locale( "do-not-exist"));
Assert.assertEquals( "Default", ResourceBundle.getBundle( "labels").getString( "language"));
推荐答案
你可以传入一个ResourceBundle.Control,无论请求的语言环境如何,始终只搜索根 ResourceBundle:
You can pass in a ResourceBundle.Control which, regardless of requested Locale, always searches only the root ResourceBundle:
ResourceBundle rootOnly = ResourceBundle.getBundle("labels",
new ResourceBundle.Control() {
@Override
public List<Locale> getCandidateLocales(String name,
Locale locale) {
return Collections.singletonList(Locale.ROOT);
}
});
这篇关于无论当前的默认语言环境如何,如何获取默认 ResourceBundle的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无论当前的默认语言环境如何,如何获取默认 ResourceBundle
基础教程推荐
- 存储 20 位数字的数据类型 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
