java.io.Console.reader() 方法從控制台讀取單行文字。
以下是java.io.Console.readLine()方法的宣告:
public String readLine()
NA
此方法返回一個包含從控制台讀取的行,不包含任何行終止字元,如果流的末尾已到達字串則為null。
IOError -- 如果發生I/O錯誤。
下面的範例演示java.io.Console.readLine()方法的用法。
package com.yiibai; import java.io.Console; public class ConsoleDemo { public static void main(String[] args) { Console cnsl = null; String name = null; try{ // creates a console object cnsl = System.console(); // if console is not null if (cnsl != null) { // read line from the user input name = cnsl.readLine("Name: "); // prints System.out.println("Name entered : " + name); } }catch(Exception ex){ // if any error occurs ex.printStackTrace(); } } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Name: Master Programmer Name entered : Master Programmer