0

我正在尝试创建一个File对象以保存我的属性文件。我需要知道如何从我的包中指定相对路径,因为下面的代码不起作用。

    try {
        File file = new File(new File(Thread.currentThread().getContextClassLoader().getResource("").toURI()), "com/configuration/settings.properties");
        try (FileOutputStream fileOutputStream = new FileOutputStream(file)) {
            properties.store(fileOutputStream, null);
        }
    } catch (IOException | URISyntaxException ioe) {
        System.out.println(ioe);
    }
4

2 回答 2

0

只需替换这一行:

File file = new File("/com/configuration/settings.properties");

和:

File file = new File(new File(Thread.currentThread().getContextClassLoader().getResource("").toURI()), "com/configuration/settings.properties");
于 2012-12-28T14:13:03.630 回答
0

相对路径取决于您运行程序的当前工作目录。

如果您在 IDE 中运行,IDE 可能会将工作目录路径设置为 Project 目录。并且您的程序如何运行取决于程序中 jar/claases 的类路径。

于 2012-12-28T13:59:00.343 回答