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


Java Console reader()用法及代码示例


Java中Console类的reader()方法用于检索与控制台关联的唯一Reader对象。这种reader()方法通常由复杂的应用程序使用。仅需要面向行读取的简单应用程序通常使用readLine()方法而不是reader()方法。

用法:

public Reader reader()

参数:此方法不接受任何参数。

返回值:此方法返回与控制台关联的Reader。

异常:此方法没有任何抛出异常。



注意:System.console()在在线IDE中返回null。

以下示例程序旨在说明IO包中Console类中的reader()方法:

程序1:

// Java program to illustrate 
// Console reader() method 
  
import java.io.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // Create the console object 
        Console cnsl 
            = System.console(); 
  
        if (cnsl == null) { 
            System.out.println( 
                "No console available"); 
            return; 
        } 
  
        String str = cnsl.readLine( 
            "Enter string:"); 
  
        // Create scanner object 
        scan = new Scanner(cnsl.reader()); 
  
        while (scan.hasNext()) { 
            // Read 
            String str = scan.next(); 
  
            // Print 
            System.out.println(str); 
        } 
    }
输出:

程序2:

// Java program to illustrate 
// Console reader() method 
  
import java.io.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // Create the console object 
        Console cnsl 
            = System.console(); 
  
        if (cnsl == null) { 
            System.out.println( 
                "No console available"); 
            return; 
        } 
  
        String str = cnsl.readLine( 
            "Enter string:"); 
  
        // Create scanner object 
        scan = new Scanner(cnsl.reader()); 
  
        while (scan.hasNext()) { 
            // Read 
            String str = scan.next(); 
  
            // Print 
            System.out.println(str); 
        } 
    }
输出:

参考文献:
https://docs.oracle.com/javase/10/docs/api/java/io/Console.html#reader()




相关用法


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