简单控制台测试应用程序中的NullPointerException

这个问题已经在这里有了答案:            >            Trying to read from the console in Java                                    4个
>            What is a NullPointerException, and how do I fix it?                                    12个
我刚开始学习一些Java,并编写了这个简单的程序,但是我不知道我的代码有什么问题.

这是我在运行时看到的错误

Exception in thread “main” java.lang.NullPointerException
at treehousejava.Main.main(Main.java:9)

这是我的代码

package treehousejava;

import java.io.Console;

public class Main {
@SuppressWarnings("unused")
    public static void main (String[] args){
        Console console = System.console();
        String q = console.readLine("Hi there! what's your name? ");
        console.printf("hi there %s ! my name is console! ");
    }
}

解决方法:

我怀疑您想将system.in和System.out用于此类学习程序. System.console()可能在您的平台上不可用,并且该调用将返回null,因此返回NullPointException.标准输入和输出将始终可用.

Scanner scanner = new Scanner(system.in);
System.out.println("Hi there! what's your name? ");
String q = scanner.nextLine();
System.out.printf("hi there %s ! my name is console! ", q);

相关文章

作为一名初次使用MaxCompute的用户,我体会颇深。MaxCompute...
近日,CloudToolkit正式推出了面向IntelliJ和Eclipse两个平台...
PyCharm是一种PythonIDE,带有一整套可以帮助用户在使用Pyth...
标题: 【下载】APK可视化修改工具:APK改之理(APKIDE)作者...
背景描述有时候Python应用的代码在本地开发环境运行十分正常...
1.注册SAP账号登录SAP官网:https://www.sap.com/index.html...