java – 将Netbeans项目转换为eclipse项目

前端之家收集整理的这篇文章主要介绍了java – 将Netbeans项目转换为eclipse项目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在netbeans中开发了一个非常大的 java应用程序.现在我有eclipse IDE,我想将我的项目从netbeans迁移到eclipse IDE.有没有办法呢?
请给我一个建议,将netbeans的项目配置到eclipse IDE中.

解决方法

我不认为有一个完整的自动过程.
This answer总结一下:

The best thing for you to do is go through the tutorial in the Eclipse Help that teaches you how Projects are configured in Eclipse,including examples of several types of typical existing-project situations.
That will give you the base understanding to successfully set up your project in Eclipse.
The “From Ant build file” import is a nice attempt,but you have to realize it can’t possibly interpret every kind of build,especially when it is not obvIoUs what targets are really interesting.
Go through the tutorials in Help Contents > Java Development User Guide > Getting Started. They are simple and short enough but will get you very far.

对于更高级的Netbeans项目(不完全是你的情况,但是我提到它的情况),有一个SOC proposal

The plugins models for Eclipse and NetBeans are very similar yet different.
This project would provide the ability to run and embed a minimal NetBeans environment within Eclipse — as Eclipse plugins–,and support running NetBeans plugins like Matisse (Swing UI painter) or Coyote (dynamic languages toolkit).

但是并没有太远:Matisse4MyEclipse更加成熟.

原文链接:https://www.f2er.com/java/125923.html

猜你在找的Java相关文章