属性文件的相对路径

发布于 2024-11-06 16:02:01 字数 303 浏览 0 评论 0原文

我正在使用属性文件:

try 
{
    properties.load(new FileInputStream("filename.properties"));
} 
catch (IOException e) 
{
}

我应该将 filename.properties 放在哪里?我不想指定绝对路径,因为此代码必须在不同的平台上工作。我试图将它放在与 de class 相同的目录中,但它不起作用。 (抱歉,如果这是一个愚蠢的问题)

也许我可以以某种方式获取当前类放置的路径?

I'm using a properties file:

try 
{
    properties.load(new FileInputStream("filename.properties"));
} 
catch (IOException e) 
{
}

Where should I place filename.properties? I don't want to specify absolute path as this code has to work in different platforms. I tried to place it in the same directory as de class but it doesn't work. (Sorry if it's a stupid question)

Maybe I can get the path where the current class is placed somehow?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱人如己 2024-11-13 16:02:01

确保您的属性文件可用于您编译的(.class)文件并以这种方式获取它

getClass().getResource("filename.properties") // you get an URL, then openStream it

getClass().getResourceAsStream("filename.properties") // you get an InputStream

示例:

import java.net.URL;
public class SampleLoad {
    public static void main(String[] args) {
        final URL resource = SampleLoad.class.getResource("SampleLoad.class");
        System.out.println(resource);
    }
}

此 main 在运行时检索其自己的编译版本:

文件:/C:/_projects/toolbox/target/classes/org/game/toolbox/SampleLoad.class

be sure that your property file is available to your compiled (.class) file and get it this way

getClass().getResource("filename.properties") // you get an URL, then openStream it

or

getClass().getResourceAsStream("filename.properties") // you get an InputStream

Example:

import java.net.URL;
public class SampleLoad {
    public static void main(String[] args) {
        final URL resource = SampleLoad.class.getResource("SampleLoad.class");
        System.out.println(resource);
    }
}

this main retrieves its own compiled version at runtime:

file:/C:/_projects/toolbox/target/classes/org/game/toolbox/SampleLoad.class

故事和酒 2024-11-13 16:02:01

你可以使用:
String userDir = System.getProperty("user.dir");

You could use :
String userDir = System.getProperty("user.dir");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文