位置:首页 > Java技术 > Java.util包 > java.util.Formatter.ioException()方法实例

java.util.Formatter.ioException()方法实例

java.util.Formatter.ioException() 方法返回最后一个IOException异常抛出由此格式的附加。如果目标的append()方法不会抛出IOException异常,则此方法将始终返回null。

声明

以下是java.util.Formatter.ioException()方法的声明

public IOException ioException()

参数

  • NA

返回值

此方法返回抛出可附加的最后一个异常,或者如果不存在这样的异常,则返回null。

异常

  • NA

例子

下面的示例演示java.util.Formatter.ioException()方法的用法。

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 latest exception, which is null
      System.out.println("" + formatter.ioException());
   }
}

让我们来编译和运行上面的程序,这将产生以下结果:

Hello World !
null