gpt4 book ai didi

java - 访问不同包中的文件路径

转载 作者:行者123 更新时间:2023-12-01 09:49:47 25 4
gpt4 key购买 nike

我有一个属性文件,位于项目名称/properties/dev 文件夹中。我正在项目名称/src 文件夹中编写代码。我想从 java 代码更新属性文件。我无法获取项目名称/src 文件夹中属性文件的路径。

最佳答案

您可以简单地使用 Properties类来获取 *.properties 文件。例如,如果您直接从项目名称/src运行您的类:

FileInputStream in = new FileInputStream("../properties/dev/propfile.properties"); // you can use absolute path here if you want
Properties props = new Properties();
props.load(in);
in.close();

FileOutputStream out = new FileOutputStream("../properties/dev/propfile.properties");
props.setProperty("Key", "Value");
props.store(out, "Comment"); // store changes
out.close();

关于java - 访问不同包中的文件路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37672651/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com