<tfoot id='wlcKt'></tfoot><legend id='wlcKt'><style id='wlcKt'><dir id='wlcKt'><q id='wlcKt'></q></dir></style></legend>

      <bdo id='wlcKt'></bdo><ul id='wlcKt'></ul>

    <small id='wlcKt'></small><noframes id='wlcKt'>

    1. <i id='wlcKt'><tr id='wlcKt'><dt id='wlcKt'><q id='wlcKt'><span id='wlcKt'><b id='wlcKt'><form id='wlcKt'><ins id='wlcKt'></ins><ul id='wlcKt'></ul><sub id='wlcKt'></sub></form><legend id='wlcKt'></legend><bdo id='wlcKt'><pre id='wlcKt'><center id='wlcKt'></center></pre></bdo></b><th id='wlcKt'></th></span></q></dt></tr></i><div id='wlcKt'><tfoot id='wlcKt'></tfoot><dl id='wlcKt'><fieldset id='wlcKt'></fieldset></dl></div>

      无论当前的默认语言环境如何,如何获取默认 ResourceBundle

      How to get the default ResourceBundle regardless of current default Locale(无论当前的默认语言环境如何,如何获取默认 ResourceBundle)
        <tbody id='OSXyo'></tbody>

          <bdo id='OSXyo'></bdo><ul id='OSXyo'></ul>

            <legend id='OSXyo'><style id='OSXyo'><dir id='OSXyo'><q id='OSXyo'></q></dir></style></legend>

            1. <small id='OSXyo'></small><noframes id='OSXyo'>

            2. <tfoot id='OSXyo'></tfoot>
              <i id='OSXyo'><tr id='OSXyo'><dt id='OSXyo'><q id='OSXyo'><span id='OSXyo'><b id='OSXyo'><form id='OSXyo'><ins id='OSXyo'></ins><ul id='OSXyo'></ul><sub id='OSXyo'></sub></form><legend id='OSXyo'></legend><bdo id='OSXyo'><pre id='OSXyo'><center id='OSXyo'></center></pre></bdo></b><th id='OSXyo'></th></span></q></dt></tr></i><div id='OSXyo'><tfoot id='OSXyo'></tfoot><dl id='OSXyo'><fieldset id='OSXyo'></fieldset></dl></div>
              1. 本文介绍了无论当前的默认语言环境如何,如何获取默认 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.propertiesResourceBundle 对象,无论我的默认 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
                How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
                Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
                Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
                How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
                How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)

                <i id='N39fT'><tr id='N39fT'><dt id='N39fT'><q id='N39fT'><span id='N39fT'><b id='N39fT'><form id='N39fT'><ins id='N39fT'></ins><ul id='N39fT'></ul><sub id='N39fT'></sub></form><legend id='N39fT'></legend><bdo id='N39fT'><pre id='N39fT'><center id='N39fT'></center></pre></bdo></b><th id='N39fT'></th></span></q></dt></tr></i><div id='N39fT'><tfoot id='N39fT'></tfoot><dl id='N39fT'><fieldset id='N39fT'></fieldset></dl></div>
                <legend id='N39fT'><style id='N39fT'><dir id='N39fT'><q id='N39fT'></q></dir></style></legend>

                  <small id='N39fT'></small><noframes id='N39fT'>

                    <tbody id='N39fT'></tbody>
                    <bdo id='N39fT'></bdo><ul id='N39fT'></ul>
                    <tfoot id='N39fT'></tfoot>