Locale: setDefault(Locale newLocale) : Locale « java.util « Java by API






Locale: setDefault(Locale newLocale)

 
import java.util.Locale;

public class Main {
  public static void main(String[] argv) throws Exception {

    Locale.setDefault(Locale.FRENCH);

  }
}

   
  








Related examples in the same category

1.Locale.CANADA_FRENCH
2.Locale.GERMANY
3.Locale.ITALY
4.Locale.JAPAN
5.Locale.KOREA
6.Locale.TAIWAN
7.Locale.UK
8.Locale.US
9.new Locale(String language, String country, String variant)
10.Locale: getDefault()
11.Locale: getDisplayCountry()
12.Locale: getDisplayCountry(Locale inLocale)
13.Locale: getDisplayLanguage()
14.Locale: getDisplayName()
15.Locale: getDisplayName(Locale inLocale)
16.Locale: getDisplayVariant()
17.Locale: getDisplayVariant(Locale inLocale)
18.Locale: getISOCountries()
19.Locale.getISOLanguages()