当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Scanner ioException()用法及代码示例


java.util.Scanner类的ioException()方法返回此Scanner的基础Readable引发的最后一次IOException。如果不存在此类异常,则此方法返回null。

用法:

public IOException ioException()

返回值:此函数返回此扫描仪的可读性引发的最后一个异常。


以下示例程序旨在说明上述函数:

示例1:

// Java program to illustrate the 
// ioException() method of Scanner class in Java 
// without parameter 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        String s = "gfg geeks!"; 
  
        // 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(); 
    } 
}
输出:
gfg geeks!
null

示例2:

// Java program to illustrate the 
// ioException() method of Scanner class in Java 
// without parameter 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        String s = "gopal dave!"; 
  
        // new scanner with the specified String Object 
        Scanner scanner = new Scanner(s); 
  
        // print the line 
        System.out.println("" + scanner.nextLine()); 
  
        // checks if there is an IO exception 
        System.out.println("" + scanner.ioException()); 
  
        // close the scanner 
        scanner.close(); 
    } 
}
输出:
gopal dave!
null

参考: https://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html#ioException()



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Scanner ioException() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。