java.text.MessageFormat類的setLocale()方法用於在此消息格式對象中設置新的語言環境。
用法:
public void setLocale(Locale locale)
參數:此方法將新的語言環境對象作為參數。
返回值:此方法無返回值
下麵是說明setLocale()方法的示例:
範例1:
// Java program to demonstrate
// getLocale() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
// creating and initializing MessageFormat
MessageFormat mf
= new MessageFormat("{0, number, #}");
// setting new Locale for
// message format object
// using setLocale() method
mf.setLocale(new Locale("en-US"));
// getting Locale
// used in MessageFormat Object
Locale locale = mf.getLocale();
// display the result
System.out.println("Locale is:" + locale);
}
}
輸出:
Locale is:en-us
範例2:
// Java program to demonstrate
// setLocale() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
// creating and initializing MessageFormat
MessageFormat mf
= new MessageFormat("{0, number, #}, {2, date, #.#}, {4, time}");
// setting new Locale for
// message format object
// using setLocale() method
mf.setLocale(new Locale("zh-Hant-TW"));
// getting Locale
// used in MessageFormat Object
Locale locale = mf.getLocale();
// display the result
System.out.println("Locale is:" + locale);
}
}
輸出:
Locale is:zh-hant-tw
參考: https://docs.oracle.com/javase/9/docs/api/java/text/MessageFormat.html#setLocale-java.util.Locale-
相關用法
- Java Locale.Builder setLocale(Locale)用法及代碼示例
- Java MessageFormat setFormatsByArgumentIndex()用法及代碼示例
- Java MessageFormat getFormatsByArgumentIndex()用法及代碼示例
- Java MessageFormat getFormats()用法及代碼示例
- Java MessageFormat toPattern()用法及代碼示例
- Java MessageFormat applyPattern()用法及代碼示例
- Java MessageFormat equals()用法及代碼示例
- Java MessageFormat format()方法用法及代碼示例
- Java MessageFormat format()函數用法及代碼示例
- Java MessageFormat formatToCharacterIterator()用法及代碼示例
- Java MessageFormat setFormats()用法及代碼示例
- Java MessageFormat parse()函數用法及代碼示例
- Java MessageFormat parse()方法用法及代碼示例
- Java MessageFormat hashCode()用法及代碼示例
- Java MessageFormat setFormat()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 MessageFormat setLocale() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。