未在java中加载的属性

时间:2018-05-18 02:43:56

标签: java properties

我有以下代码

Properties influxProps = new Properties();
InputStream inputStream = this.getClass().getResourceAsStream("/influx.properties");
String result = IOUtils.toString(inputStream, StandardCharsets.UTF_8);
System.out.println("INFLUX PROPERTIES : "+result);
influxProps.load(inputStream);
System.out.println("Properties: "+influxProps.toString());

我可以获取文件,结果也会正确显示文件的内容。

但是将输入流加载到流入属性中并不起作用。 当我尝试打印属性贴图时,它什么都没打印出来。

我该如何解决这个问题。我没有在静态方法中运行此代码。

0 个答案:

没有答案