0

How would you take a .java and .form file that was created in IntelliJ and run it in another program, such as Eclipse?

Also, is there a way to make the GUI Form editor actually write all of the code into the class file?

ws04
  • 45
  • 9

1 Answers1

1

The .form file is only understood by IntelliJ IDEA; there aren't any tools to allow editing IntelliJ IDEA .form files in other IDEs. The .class file is just a Java class; you can use it just like any other Java library. It contains the entire data for the form; the .form file is not needed at runtime.

The GUI Designer can generate source code as well. You can enable this in Settings | Editor | GUI Designer | Generate GUI into...

yole
  • 92,896
  • 20
  • 260
  • 197