Java.util.Locale.getVariant() Java.util.Locale.getLanguage() Java.util.Locale.hashCode() 描述 所述java.util.Locale.getVariant()方法返回该语言环境的变量的代码。 声明 以下是java.util.Locale.getVariant()方法的声明 public String getVariant() 参数 NA 返回值 此方法不返回值。 异常 NA 实例 以下示例显示了java.util.Locale.getVariant()方法的用法。 package com.tutorialspoint; import java.util.*; public class LocaleDemo { public static void main(String[] args) { // create a new locale Locale locale = new Locale("en", "US", "WIN"); // print locale System.out.println("Locale:" + locale); // get variant and print it System.out.println("Language:" + locale.getVariant()); } } 让我们编译并运行上面的程序,这将产生以下结果 Locale:en_US_WIN Language:WIN Java.util.Locale.getLanguage() Java.util.Locale.hashCode()