Java.io.Console.readLine()方法實例
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