在类旁边保存.properties文件

时间:2015-12-26 11:54:32

标签: java

我想将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

1 个答案:

答案 0 :(得分:0)

最后,我可以找到一种方法来访问类旁边的config.properties文件,
这是我可以丰富该文件的代码:

File f = new File("");
File config = new File(f.getAbsolutePath()+"/src/qrCode/config.properties");
FileOutputStream output = new FileOutputStream(config);