NullPointerException,带有Java中的读取属性文件

时间:2019-01-20 09:29:49

标签: java swing properties nullpointerexception

加载属性文件时,我得到一个java.lang.NullPointerException

这是一个简单的java swing应用程序,请尝试使用以下代码读取属性文件get java.lang.NullPointerException

InputStream inputStream;
Properties properties;

inputStream = new FileInputStream("C:/Config/config.properties");
properties.load(inputStream);

1 个答案:

答案 0 :(得分:3)

您缺少创建properties instance的信息:

Properties properties = new Properties();