如结构:
现在Tst.java中想要访问note.txt文件,这样就行:
getClass().getResource("note.txt")得到java.net.URL
或:
getClass().getResourceAsStream("note.txt")得到InputStream。
或:
Tst.class.getResource("note.txt")
现在AAA.java中想要访问a.jpg,直接用相当路径“icons/a.jpg”就行了。其实,这样的前提是你运行的目录的是你当前项目myflugin,如果没有特别设置默认运行路径就是这个路径。
Platform.getInstallLocation().getURL().getPath();
例如:E:\eclipse\3.6.1\eclipse
Platform.getBundle(Activator.PLUGIN_ID).getLocation()
例如:reference:file:/E:/HelloGEF/
Platform.getBundle(Activator.PLUGIN_ID).getLocation().substring(16)
E:/HelloGEF/
System.out.println(System.getProperties().get("user.dir"));
如:项目路径
System.out.println(System.getProperties().get("java.class.path"));
如:项目路径\bin
new File("").getAbsoluteFile()