ResourceBundle類的getLocale()方法 (ResourceBundle Class getLocale() method)
getLocale() method is available in java.util package.
getLocale()方法在java.util包中可用。
getLocale() method is used to get the locale of this ResourceBundle.
getLocale()方法用于獲取此ResourceBundle的語言環境。
getLocale() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
getLocale()方法是一個非靜態方法,只能通過類對象訪問,如果嘗試使用類名稱訪問該方法,則會收到錯誤消息。
getLocale() method does not throw an exception at the time of returning locale.
getLocale()方法在返回語言環境時不會引發異常。
Syntax:
句法:
public abstract Enumeration getLocale();
Parameter(s):
參數:
It does not accept any parameter.
它不接受任何參數。
Return value:
返回值:
The return type of this method is Locale, it gets this ResourceBundle locale.
此方法的返回類型為Locale ,它獲取此ResourceBundle語言環境。
Example:
例:
// Java program to demonstrate the example
// of Locale getLocale() method of ResourceBundle
import java.util.*;
public class GetLocaleOfResourceBundle {
public static void main(String[] args) {
// Instantiates ResourceBundle with
// some locale
ResourceBundle rb = ResourceBundle.getBundle("IncludeHelp...", Locale.JAPAN);
System.out.println("rb.getKeys(): ");
// By using getLocale() method is to
// return the locale for this rb
Locale lo = rb.getLocale();
System.out.println("rb.getLocale(): " + lo);
}
}
Output
輸出量
ja_JP
翻譯自: https://www.includehelp.com/java/resourcebundle-getlocale-method-with-example.aspx