我有一个属性文件 config.properties,我在 Eclipse 的一个 java 项目中访问它。
BufferedReader bfr = new BufferedReader(new FileReader(new File("config.properties")));
当我在 Eclipse 中运行项目时,这可以正常工作。但是当我将项目导出为 jar 文件时,jar 中不包含 config.properties,并且当我运行 jar 时出现以下错误:
java.io.FileNotFoundException: config.properties
如何打包我的属性文件,使其包含在我的 jar 中并使用?