我试过代码:
import java.io.Console;
public class Default
{
public static void main(String args[]) throws IOException
{
Console console = System.console();
String testing = console.readLine("Enter Name: ");
System.out.println("Entered Name: "+ testing);
}
}
出现以下错误的异常:
Source not found. NullPointerException
我正在使用 Eclipse Juno EE 进行调试..!
以上编写代码的参考链接在这里