Currently, I wish to know which properties file is being loaded in my application.
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package example0;
import java.util.Locale;
/**
 *
 * @author yccheok
 */
public class Main {
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        //Locale.setDefault(Locale.SIMPLIFIED_CHINESE);     // Bundle_zh_CH.properties will be loaded.
        //Locale.setDefault(Locale.CHINA);                  // Bundle_zh_CH.properties will be loaded.
        //Locale.setDefault(Locale.TRADITIONAL_CHINESE);    // Bundle.properties will be loaded.
        //Locale.setDefault(Locale.CHINESE);                // Bundle.properties will be loaded.
        String Hello = java.util.ResourceBundle.getBundle("example0/Bundle").getString("HELLO");
        System.out.println(Hello);
        System.out.println("Locale.SIMPLIFIED_CHINESE's language : " + Locale.SIMPL开发者_Python百科IFIED_CHINESE.getLanguage());
        System.out.println("Locale.CHINA's language : " + Locale.CHINA.getLanguage());
        System.out.println("Locale.TRADITIONAL_CHINESE's language : " + Locale.TRADITIONAL_CHINESE.getLanguage());
        System.out.println("Locale.CHINESE's language : " + Locale.CHINESE.getLanguage());
        System.out.println("Locale.SIMPLIFIED_CHINESE's country : " + Locale.SIMPLIFIED_CHINESE.getCountry());
        System.out.println("Locale.CHINA's country : " + Locale.CHINA.getCountry());
        System.out.println("Locale.TRADITIONAL_CHINESE's country : " + Locale.TRADITIONAL_CHINESE.getCountry());
        System.out.println("Locale.CHINESE's country : " + Locale.CHINESE.getCountry());
    }
}
The following is the output :
Hello
Locale.SIMPLIFIED_CHINESE's language : zh
Locale.CHINA's language : zh
Locale.TRADITIONAL_CHINESE's language : zh
Locale.CHINESE's language : zh
Locale.SIMPLIFIED_CHINESE's country : CN
Locale.CHINA's country : CN
Locale.TRADITIONAL_CHINESE's country : TW
Locale.CHINESE's country : 
Previously, to determine whether properties file Bundle_zh_CH.properties will be loaded, I am performing the following comparison.
if (Locale.getDefault() == Locale.SIMPLIFIED_CHINESE)
However, some Locale other than SIMPLIFIED_CHINESE will load Bundle_zh_CH.properties as well.
What is the reliable way for me to do so?
Shall I
if (Locale.getDefault() == Locale.SIMPLIFIED_CHINESE || Locale.getDefault() == Locale.China)
or
if (Locale.getDefault().equals("CN"))
Don't rely on equals operator comparison as you can create new Locale instances with its public constructors. In the following code:
Locale simpChinese = new Locale("zh","CN","");
System.out.println(simpChinese == Locale.SIMPLIFIED_CHINESE);
System.out.println(simpChinese.equals(Locale.SIMPLIFIED_CHINESE));
prints:
false
true
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论