如何获取 eclipse .classpath classpathentry 的值
我正在编写一些 eclipse 插件,可以为 BlackBerry 开发人员做一些工作。
这是我的 BB 项目的 .classpath 文件条目:
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/net.rim.ejde.BlackBerryVMInstallType/BlackBerry JRE 5.0.0"/>
使用此信息是否可以(以编程方式)找出 rim 插件在磁盘上的确切位置?
就我而言,我正在寻找以下通行证: D:\WORK\eclipse-java-galileo-SR2-win32\eclipse\plugins\net.rim.ejde.componentpack5.0.0_5.0.0.25
但我需要从 Eclipse 插件 java 代码中找到 pass。
我的第二个问题是如何从我的黑莓项目的代码 .classpath 文件中获取。
问候, 斯拉维克。
I am writing some eclipse plugin that will do some work for BlackBerry developers.
This is the .classpath file entry of my BB project:
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/net.rim.ejde.BlackBerryVMInstallType/BlackBerry JRE 5.0.0"/>
Using this information is it possible (programmatically) to find out the exact location of the rim plugin on the disk ?
In my case I am looking for the following pass:
D:\WORK\eclipse-java-galileo-SR2-win32\eclipse\plugins\net.rim.ejde.componentpack5.0.0_5.0.0.25
But I need to find the pass from my Eclipse Plugin java code.
My second question is how can i get from code .classpath file of my BlackBerry project.
Regards,
Slavik.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 IJavaProject 获取类路径条目,您可以从 IProject 获取类似以下内容的类路径条目:
You can get the classpath entries from your IJavaProject, which you can get from your IProject something like this: