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
ます。これを行うより良い方法はありますか?