我正在创建一个Eclipse RCP产品,它将在顶层文件夹中包含一个/ bin目录,其中将包含一些文件。以编程方式到达/ bin位置的最佳方法是什么?
产品目录:
答案 0 :(得分:0)
在插件中,使用Platform.getInstallLocation
获取安装目录位置:
URL installURL = Platform.getInstallLocation().getURL();
String path = URIUtil.toURI(installURL).toASCIIString();
Platform
和URIUtil
都在org.eclipse.core.runtime
包/插件中。