码迷,mamicode.com
首页 > 系统相关 > 详细

eclipse、eclipse_rcp工程发布前、eclipse_rcp工程发布后

时间:2017-04-27 23:10:46      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:str   getpath   http   cli   路径问题   cat   document   orm   bundle   

接着上节说到的相对路径问题

eclipse的相对路径是相对于项目工程的路径:在这里可以直接使用Document doc = reader.read(new File("student.xml"));

技术分享

 

eclipse_rcp产品发布前的相对路径是相对于源码路径

InputStream in = MAC.class.getClassLoader().getResourceAsStream("student.xml");

Document doc = reader.read(new File(in));

eclipse_rcp产品发布后的相对路径是相对于产品打包后的安装路径

FileLocator.toFileURL(Platform.getBundle(Activator.PLUGIN_ID).getEntry("student.xml")).getPath()

 

eclipse、eclipse_rcp工程发布前、eclipse_rcp工程发布后

标签:str   getpath   http   cli   路径问题   cat   document   orm   bundle   

原文地址:http://www.cnblogs.com/wenky/p/6777302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!