java.util.Scanner.ioException()方法實例
java.util.Scanner.ioException() 方法返回最後一個IOException異常由此Scanner基本可讀拋出。如果不存在這樣的異常,此方法返回null。
聲明
以下是java.util.Scanner.ioException()方法的聲明
public IOException ioException()
參數
-
NA
返回值
此方法返回拋出此scanner讀取的最後一個異常
異常
-
NA
例子
下麵的示例演示java.util.Scanner.ioException()方法的用法。
package com.yiibai; import java.util.*; public class ScannerDemo { public static void main(String[] args) { String s = "Hello World! 3 + 3.0 = 6 "; // create a new scanner with the specified String Object Scanner scanner = new Scanner(s); // print the line System.out.println("" + scanner.nextLine()); // check if there is an IO exception System.out.println("" + scanner.ioException()); // close the scanner scanner.close(); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hello World! 3 + 3.0 = 6 null