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

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

java.util.Formatter.close() 方法關閉此格式。如果目標實現Closeable接口,它的close方法將被調用。關閉格式化使得它能夠釋放資源可能會持有(如打開的文件)。如果格式化程序已經關閉,則調用此方法無效。

聲明

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

public void close()

參數

  • NA

返回值

此方法不返回任何值。

異常

  • NA

例子

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

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
      System.out.println("" + formatter);

      // close the formatter
      formatter.close();

      // attempt to access the formatter results in exception
      System.out.println("" + formatter);
   }
}

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

Hello World !
Exception in thread "main" java.util.FormatterClosedException
	at java.util.Formatter.ensureOpen(Formatter.java:2318)
	at java.util.Formatter.toString(Formatter.java:2265)
	at java.lang.String.valueOf(String.java:2826)
	at java.lang.StringBuilder.append(StringBuilder.java:115)
	at com.yiibai.FormatterDemo.main(FormatterDemo.java:25)
Java Result: 1