我曾嘗試代碼:控制檯輸入錯誤顯示java.lang.NullPointerException
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朱諾EE調試..!
和參考鏈接,上面寫的代碼是here
在編譯時或運行時拋出錯誤嗎? – MTCoster
@MatthewCoster,跑步時間! – Enthusiastic
也許[這個](http://stackoverflow.com/questions/104254/java-io-console-support-in-eclipse-ide)問題會幫助那麼。 – MTCoster