java.util.Formatter.locale()方法實例
java.util.Formatter.locale() 方法返回locale這個格式化的構造設置。該格式的方法為這個對象,它有一個locale參數但不會改變這個值。
聲明
以下是java.util.Formatter.locale()方法的聲明
public Locale locale()
參數
-
NA
返回值
如果冇有本地化應用此方法返回null,否則為語言環境
異常
-
FormatterClosedException -- 如果該格式已經被關閉通過調用它的close()方法
例子
下麵的示例演示java.util.Formatter.locale()方法的用法。
package com.yiibai; import java.util.Formatter; import java.util.Locale; public class FormatterDemo { public static void main(String[] args) { // create a new formatter StringBuffer buffer = new StringBuffer(); Formatter formatter = new Formatter(buffer, Locale.US); // format a new string String name = "World"; formatter.format("Hello %s !", name); // print the formatted string with default locale System.out.println("" + formatter); // print locale System.out.println("" + formatter.locale()); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hello World ! en_US