我如何使用 eclipse 作为 j++ 的 IDE
是否可以使用 Eclipse 调试 j++ 项目?
is it possible to debug j++ projects with Eclipse?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以使用 Eclipse 调试 j++ 项目?
is it possible to debug j++ projects with Eclipse?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您也许可以,因为我们使用 Netbeans 来实现这一点。
我虽然对 Eclipse 没有足够的了解,不知道这是否可行。
如果有人仍然对我如何使用 Netbeans 做到这一点感兴趣,请询问,我将提供相当复杂的说明。
这个想法的基础如下:
首先为项目新建ANT项目。
将构建、清理等任务写入其中,因为 ANT 仍然支持 VJC (J++) 编译器。
制作可以构建现有 ANT 项目的 Netbeans(或者可能是 Eclipse)项目。
现在您已经构建好了环境。
使用 J++ 类 ZIP 将新目标添加到 ide(不确定 Eclipse 是否支持此功能)。
现在 IDE 应该满足于对 MS 特定类的引用。
我们已经通过这种设置维护了我们的遗留平台一年多了。
我们必须对我们的项目进行一些清理,因为 J++ 允许一些相当反常的构造,但它主要是通过使用 Netbeans 出色的重构功能进行重命名来处理的。
You might be able to, because we do it with Netbeans.
I though don't have enough knowledge of Eclipse to know if this is possible with it.
If anybody is still interested how I did it with Netbeans just ask and I will provide the pretty complex instructions.
The base of the idea is as follows:
First make new ANT project for the project.
Write the build, clean etc tasks to that as ANT still supports VJC (J++) compiler.
Make Netbeans (Or possibly Eclipse) project that can build an existing ANT project.
Now you have the build environment in order.
Add new target to the ide (Not sure if Eclipse supports this) with the J++ class ZIPs.
Now the IDE should be content with references to the MS specific classes.
We have maintained our legacy platform with this kind of setup over a year now.
We had to do some cleaning to our projects because J++ allows some pretty pervers constructions, but it was mostly handled with renaming using the excellent refactoring capabilities of Netbeans.
不可以。J++ 是 Microsoft 特定的技术,尚未授权给其他任何人。您将需要 DevStudio 才能使用 j++ 源。
No. J++ is a microsoft specific technology that has not been licensed to anyone else. You will need DevStudio to work with j++ source.