如何获取eclipse中当前打开的项目的信息
我正在 C++/Qt 中创建应用程序,我想获取有关 Eclipse IDE 中当前打开的项目的一些信息(名称、项目源的路径等)。是否有任何现有的解决方案可以满足这种需求,例如一些类似 dbus 的接口或充当服务器的插件(最好的是该解决方案在不同操作系统上以相同的方式工作)? Google 没有帮助我解决这个问题...
或者我必须为 Eclipse 编写自己的插件吗?
I'm creating application in C++/Qt and I would like to get some information about currently open project in Eclipse IDE (name, path to the project source, etc.). Is there any existing solution for such need, e.g. some dbus-like interface, or plugin which acts as server (the best would be if that solution worked in the same way on different OSes)? Google didn't help me with this...
Or do i have to write my own plugin for Eclipse?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您正在尝试从单独的进程中获取此信息。我不相信有现成的进程间 API 可以做到这一点。您需要为 Eclipse 编写一个插件,以便能够与您的 C++/Qt 应用程序进行通信。在 Eclipse 中,插件获取有关项目等的信息是微不足道的。
It sounds like you are trying to get this information from a separate process. I do not believe there is a ready-made inter-process API for doing this. You will need to write a plugin for Eclipse that will be able to communicate with your C++/Qt app. Inside Eclipse, it is trivial for a plugin to get information about projects, etc.