位置:首頁 > Java技術 > Java.util包 > java.util.Locale.setDefault()方法實例

java.util.Locale.setDefault()方法實例

java.util.Locale.setDefault(Locale newLocale) 方法設置默認語言環境的Java虛擬機實例。這並不影響宿主的區域設置。

聲明

以下是java.util.Locale.setDefault()方法的聲明。

public static void setDefault(Locale newLocale)

參數

  • newLocale -- 新的默認語言環境

返回值

此方法無任何返回值

異常

  • SecurityException -- 如果安全管理器存在並且其checkPermission方法不允許進行該操作。

  • NullPointerException -- 如果 newLocale 為 null

例子

下麵的示例演示java.util.Locale.setDefault()方法的用法。

package com.yiibai;

import java.util.*;

public class LocaleDemo {

   public static void main(String[] args) {

      // create a new locale
      Locale locale1 = new Locale("en", "US", "WIN");

      // print locale
      System.out.println("Locale:" + locale1);

      // set another default locale
      Locale.setDefault(new Locale("fr", "FRANCE", "MAC"));

      // create a new locale based on new default settings
      Locale locale2 = Locale.getDefault();

      // print the new locale
      System.out.println("Locale::" + locale2);
   }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

Locale:en_US_WIN
Locale::fr_FRANCE_MAC