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


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


Java中Console类的flush()方法用于刷新控制台并强制所有缓冲的输出立即写入。

用法:

public void flush()

指定者:该方法由Flushable接口的flush()方法指定。

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

返回值:此方法不返回任何值。



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

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

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

程序1:

// Java program to illustrate 
// Console flush() 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:"); 
  
        System.out.println( 
            "You entered:" + str); 
  
        // Revoke flush() method 
        cnsl.flush(); 
    } 
}
输出:

程序2:

// Java program to illustrate 
// Console flush() 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:"); 
  
        System.out.println( 
            "You entered:" + str); 
  
        // Revoke flush() method 
        cnsl.flush(); 
    } 
}
输出:

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




相关用法


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