我正在尝试运行我的主类并将其他属性文件添加到类路径中,但这没有发生。我看到了一些link之类的解决方案,但它们对我不起作用。我还尝试将“ -cp \到属性文件的路径”添加到“运行配置-> VM选项”,但同样没有成功。
答案 0 :(得分:0)
如果我对您的理解正确,那么如果您不想从现有文件中读取文件,则必须先创建该文件,然后使用类似以下内容的文件进行写入:
try {
File f = new File("path/to/propertyFile.properties");
if (file.createNewFile()){
// some debugging
System.out.println("File is created!");
}else{
System.out.println("File already exists.");
}
// you have your file now, and you can perform manipulations to it
OutputStream output = new FileOutputStream("path/to/propertyFile.properties")
Properties prop = new Properties();
prop.setProperty("key", "value");
// save properties to project root folder
prop.store(output, null);
} catch (IOException io) {
io.printStackTrace();
}