我有一个简单的应用程序,可以读取和写入属性文件。它是在 NetBeans 中开发的,在 Netbeans 中运行时运行良好。但是,现在我已经构建并部署了它,找不到属性文件。
项目结构
com/company/projectname/controller/controllerclass.java <- this is where the code using the properties file exists
conf/runController.properties <- the properties file, this exists here
在代码中我有以下访问属性文件:
private final String PROPERTIESFILELOCATION = "conf/runController.properties";
public void runController(){
this.runController = new Properties();
this.propertiesLocation = this.getClass().getClassLoader().getResource(this.PROPERTIESFILELOCATION);
FileInputStream propsInput = new FileInputStream(this.propertiesLocation.getFile());
this.runController.load(propsInput);
}
(为简洁起见总结)
当我从命令行调用 jar 文件时,我发出:
java -classpath /usr/java/projectdirectory/project.jar com.company.projectname.controller.controllerclass arg1
所以,我之前就以这种方式在其他项目上实现了这一点,但由于某种原因,这不起作用。
我已经检查了 jar 文件中的结构,并且所有内容都符合预期。
谁能指出我的错误并帮助我启动并运行它?
编辑-更改名称以匹配。它们在我的代码中总是一致的