我想将config.properties
文件保存在Prefs.java
旁边。我试过这样做,但它说java.io.FileNotFoundException
:
OutputStream output = new FileOutputStream("myPackage/config.properties");
我的项目结构是:
+ myPackage
- Prefs.java
如何将config.properties
保存在Prefs.java
旁边,如下所示:
+ myPackage
- Prefs.java
- config.properties
答案 0 :(得分:0)
最后,我可以找到一种方法来访问类旁边的config.properties
文件,
这是我可以丰富该文件的代码:
File f = new File("");
File config = new File(f.getAbsolutePath()+"/src/qrCode/config.properties");
FileOutputStream output = new FileOutputStream(config);