我正在编写一个从.properties文件中读取属性的java Web应用程序。由于我不知道.properties文件的绝对路径,因为它取决于应用程序将来运行的环境,我必须使用“getClass()。getResourceAsStream”加载它:
Properties props = new Properties();
props.load(getClass().getResourceAsStream("test.properties"));
message = props.getProperty("testdata");
这可以按预期工作。现在我想更改文件中testdata的值。但是我无法打开要写入的Outputstream,因为我仍然不知道.properties文件的路径。
props.setProperty("testdata", "foooo");
props.store(new FileOutputStream("?????"), null);
有没有办法获取文件的路径,还是可以以某种方式使用已建立的Properties-object?欢迎任何想法允许我更改.properties文件。
答案 0 :(得分:2)
您可以使用URL
而非使用getResource()
getResourceAsStream()
然后,您可以使用URL
来读取和写入您的属性文件。
File myProps = new File(myUrl.toURI());
FileInputStream in = new FileInputStream(myProps);
等
答案 1 :(得分:-3)
Properties类包含一个store方法,可用于将属性保存回getClass()中读取的流.getResourceAsStream(“test.properties”)。