位置:首頁 > Java技術 > Java.util包 > java.util.Formatter.toString()方法實例

java.util.Formatter.toString()方法實例

java.util.Formatter.toString() 方法返回調用toString()方法在目的地的輸出結果。

聲明

以下是java.util.Formatter.toString()方法的聲明

public String toString()

參數

  • NA

返回值

此方法返回的目的地為輸出調用的toString()的結果

異常

  • FormatterClosedException -- 如果該格式已經被關閉通過調用它的close()方法

例子

下麵的示例演示java.util.Formatter.toString()方法的用法。

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 formatter as a string
      System.out.println("" + formatter.toString());
   }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

Hello World !
Hello World !