當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.Console.flush()用法及代碼示例



描述

這個java.io.Console.flush()方法刷新控製台並強製立即寫入任何輸出。

聲明

以下是聲明java.io.Console.flush()方法 -

public void flush()

參數

NA

返回值

此方法不返回任何值。

異常

NA

示例

下麵的例子展示了 java.io.Console.flush() 方法的用法。

package com.tutorialspoint;

import java.io.Console;

public class ConsoleDemo {
   public static void main(String[] args) {      
      Console cnsl = null;
      
      try {
         //Create a console object.
           cnsl = System.console();
           
           // test for console not null
           if (cnsl != null) {
              
              // read line from the console
               String name = cnsl.readLine("Enter  name :");
               
               // print
               System.out.println("You have entered:" + name);
           }
           
           // flushes console and forces output to be written
           cnsl.flush();   
           
      } catch(Exception ex) {
         // if any error occurs
         ex.printStackTrace();      
      }
   }
}

以下是輸入 -

Master Programmer

讓我們編譯並運行上麵的程序,這將產生以下結果 -

You have entered:Master Programmer

相關用法


注:本文由純淨天空篩選整理自 Java.io.Console.flush() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。