我试图创建一个配置文件来保存类路径中客户端的用户名和ip数据,就像在项目的资源文件夹中一样。我能够检索这样的属性:
public String getProperty(String property){
String result = null;
try{
InputStream inputStream = this.getClass().getResourceAsStream(filename);
Properties properties = new Properties();
if (inputStream != null){
properties.load(inputStream);
System.out.println(this.getClass().getResource(filename).toString());
}else {
System.out.println("File not found or loaded: "+filename);
}
result = properties.getProperty(property, null);
inputStream.close();
}catch (Exception e){
e.printStackTrace();
}
return result;
}
但我也希望能够设置我可以从文件中获取的那些值,所以为了尝试这样做,我使用这种方法:
public void setProperty(String property, String value){
try{
OutputStream out = new FileOutputStream(this.getClass().getResource(filename).getFile());
Properties properties = new Properties();
properties.setProperty(property, value);
properties.store(out, "Optional comment");
out.close();
}catch (Exception e){
System.out.println("Unable to load:"+filename);
e.printStackTrace();
}
}
但是,运行该方法会出现以下错误:
java.io.FileNotFoundException: file:/home/andrew/Documents/Programming/Executable-JARs/SchoolClient.jar!/client-config.properties (No such file or directory)
at java.io.FileOutputStream.open(Native Method)
at java.io.FileOutputStream.<init>(FileOutputStream.java:221)
at java.io.FileOutputStream.<init>(FileOutputStream.java:110)
at com.andrewlalis.utils.DataSaver.setProperty(DataSaver.java:54)
at com.andrewlalis.MainClient.getNewIp(MainClient.java:173)
at com.andrewlalis.ClientWindow$4.mouseClicked(ClientWindow.java:142)
现在,我已确认文件client-config.properties
确实存在,因为我能够从中读取数据,但似乎我无法为其创建输出流。这是为什么?先感谢您。
我遇到的问题是我无法在类路径中打开文件中的输出流。
答案 0 :(得分:1)
该属性位于.jar文件中。所以你的问题应该是&#34;如何修改当前正在执行的.jar文件的内容&#34;这不是一个好主意。
这里的主要问题是:
您是否需要保留这些值?
如果您设置的值仅在程序运行时保持活动状态 - 只需.setProperty(key, value);
并且一切正常。
另一方面,如果您希望在下次启动应用程序时保留这些值,则可能需要考虑使用Preferences
。