java.util.Formatter.out()方法實例
java.util.Formatter.out() 方法返回的目的地的輸出。
聲明
以下是java.util.Formatter.out()方法的聲明
public Appendable out()
參數
-
NA
返回值
方法返回的目的地的輸出。
異常
-
FormatterClosedException -- 如果該格式已經被關閉通過調用它的close()方法
例子
下麵的示例演示java.util.Formatter.out()方法的用法。
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 the output System.out.println("" + formatter.out()); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hello World ! Hello World !