propsdatabase = new Properties();
try
{
// load a properties file
InputStream dbin = getClass().getResourceAsStream("/database.properties");
//props.load(in);
propsdatabase.load(dbin);
}
catch (IOException ex)
{
ex.printStackTrace();
}
我想访问一个不在 jar 文件中的文件。就在jar文件的位置。
我在 main/resources 文件夹中使用名为 database.properties 的属性文件。要求是更改 jar 外的 database.properties 的位置。
所以我需要一些路径可以指向 jar 所在位置的东西。
我正在使用 Maven 来构建我的 jar