2014-12-04 106 views
0

夾如下:eclipse插件加載文件

Image image = ImageDescriptor.createFromURL(
      FileLocator.find(bundle, new Path("icons/image.gif"), null)) 
      .createImage(); 

它工作得很好。

同樣,我在eclipse插件項目裏創建了一個名爲「assets」的文件夾,&在裏面創建了一個名爲「Temp.txt」的文件。

但我無法找到一種方法將它加載到我的java類。請幫助我解決這個問題。

回答

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