我创建了一个插件,可以从icons文件夹加载图像,如下所示:
Image image = ImageDescriptor.createFromURL(
FileLocator.find(bundle, new Path("icons/image.gif"), null))
.createImage();
工作正常。
同样,我在eclipse插件项目中创建了一个名为“assets”的文件夹,&在其中创建了一个名为“Temp.txt”的文件。
但我无法找到将其加载到我的java类中的方法。请帮助我完成这项工作。
答案 0 :(得分:0)
使用:
URL url = FileLocator.find(bundle, new Path("assets/Temp.txt"), null);
URL fileUrl = FileLocator.toFileURL(url);
File file = new File(fileUrl.getPath());
... read the file in the usual way