30/09/2018, 19:56

Lỗi java.lang.NullPointerException

Mình viết thử một chương trình Java như sau thì bị lỗi java.lang.NullPointerException:

import java.io.Console;


public class MovieRating {

	public static void main(String[] args) {
		Console console = System.console();
		String name = "John";
		console.printf("Nice to meet you, ", name);
	}

}

Mình compile trực tiếp trên terminal thì ok nhưng chạy trên intellij thì nó ra như vậy, cũng chẳng biết thế là thế nào

... viết 22:05 ngày 30/09/2018
stackoverflow.com
Gauls

System.console() returns null

java, eclipse, console, springsource
asked by Gauls on 10:55AM - 17 Nov 10
Bài liên quan
0