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