ioException()
方法ioException()方法在java.util包中可用。
ioException()方法用于由Scanner Readable抛出IOException,否则返回null。
ioException()方法是一个非静态方法,只能通过类对象进行访问,如果尝试使用类名访问该方法,则会收到错误消息。
返回IOException时,ioException()方法不会引发异常。
语法:
public IOException ioException();
参数:
它不接受任何参数。
返回值:
该方法的返回类型为IOException,当此Scanner Readable抛出该方法时,它返回IOException,否则返回null。
示例
//Java程序演示示例 //ioException()扫描器的IOException方法的说明 import java.util.*; public class IOExceptionOfScanner { public static void main(String[] args) { String str = "Hi, [IncludeHelp] +\n 10.0 true "; //实例化Scanner对象 //给定的字符串str- Scanner sc = new Scanner(str); //显示str- System.out.println("sc.nextLine(): " + sc.nextLine()); //通过使用ioException()方法是 //如果可能的话,返回IOException- System.out.println("sc.ioException(): " + sc.ioException()); //通过使用close()方法是 //关闭扫描仪对象 sc.close(); } }
输出结果
sc.nextLine(): Hi, [IncludeHelp] + sc.ioException(): null