java.io.Console.readLine(String fmt, Object... args)方法範例


java.io.Console.readLine(String fmt, Object... args) 方法提供了一個格式化提示,然後從控制台讀取單行文字。

宣告

以下是方法 java.io.Console.readLine(String fmt, Object... args) 的宣告

public String readLine(String fmt, Object... args)

引數

  • fmt

  • args

返回值

此方法返回一個包含從控制台讀取的行,不包括任何行終止字元或如果流的末尾已到達字串則為null。

異常

  • IllegalFormatException -- 如果格式字串包含非法語法,格式說明符與給定的引數,給出的格式字串引數不足,或其他非法條件是不相容的。

  • IOError -- 如果發生I/O錯誤。

例子

下面的範例演示java.io.Console.readLine(String fmt, Object... args) 方法的用法。

package com.yiibai;

import java.io.Console;

public class ConsoleDemo {
   public static void main(String[] args) {
      
      Console cnsl = null;
      String fmt = "%1$4s %2$5s %3$10s%n";
      String alpha = null;
      
      try{
         // creates a console object
         cnsl = System.console();

         // if console is not null
         if (cnsl != null) {
            
            // read line from the user input
            alpha = cnsl.readLine(fmt, "Enter","Alphabets: ");
            
            // prints
            System.out.println("Alphabets entered: " + alpha);
         }      
      }catch(Exception ex){
         
         // if any error occurs
         ex.printStackTrace();      
      }
   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Enter Alphabets: ABCDEFGHIJKLMNOPQRSTUVWXYZ
Alphabets entered : ABCDEFGHIJKLMNOPQRSTUVWXYZ