我需要从 Eclipse 中的属性文件中读取配置详细信息。我已将其置于与 我调用的类文件config.properties
相同的级别:plugin.xml
Properties properties = new Properties();
FileInputStream file;
String path = "./config.properties";
file = new FileInputStream(path);
properties.load(file);
我得到一个file not found exception
. 有没有更好的方法来做到这一点?