0

对于我正在构建的小型实用程序,我需要读取 config/ini 文件。这本身没问题,但我试图弄清楚如何在 Linux 和 Windows 上正确/最好地做到这一点。

在 Linux 下,该文件的位置可能是:

- /etc
- the install directory of the jars/files

在 Windows 下,我不知道 /etc 的等价物是什么(对不起,我在 Linux 上完成了所有工作)。

有谁知道一个组件,它将搜索我可以在我的代码中重用的 config/ini 文件的公共文件位置?

非常感谢 R

4

1 回答 1

1

你可以使用系统属性来做到这一点。

String basepath = System.getProperty("user.dir");

看一眼

http://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html

于 2013-05-20T09:07:23.090 回答