Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您将如何获取在 IntelliJ 中创建的 .java 和 .form 文件并在另一个程序(例如 Eclipse)中运行它?
另外,有没有办法让 GUI 表单编辑器真正将所有代码写入类文件?
.form 文件只有 IntelliJ IDEA 才能理解;没有任何工具允许在其他 IDE 中编辑 IntelliJ IDEA .form 文件。.class 文件只是一个 Java 类;您可以像使用任何其他 Java 库一样使用它。它包含表单的全部数据;运行时不需要 .form 文件。
GUI 设计器也可以生成源代码。您可以在设置 | 中启用此功能。编辑 | GUI 设计师 | 生成图形用户界面...