📌  相关文章
📜  Java中的 MessageFormat setLocale() 方法与示例

📅  最后修改于: 2022-05-13 01:55:33.778000             🧑  作者: Mango

Java中的 MessageFormat setLocale() 方法与示例

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-