Java compilers

closed account (NUj6URfi)
Besides Eclipse, and netbeans, is there an easy way to compile java? Neither Eclipse nor netbeans worked.
closed account (o1vk4iN6)
Eclipse and netbeans aren't compilers. You need the JDK that comes with something named "bin/javac".
Eclipse and NetBeans are what's called IDEs, or Integrated Development Environments. These days, they will most likely come with features that allow the compiler to be run through them, and pipe the output through the IDE for easier debugging.

Just as well, you could always write with notepad and compile with good ol' command prompt.
closed account (NUj6URfi)
Alright. Thanks.
I think Eclipse has built-in custom-made java compiler (for some sneaky purposes), though not NetBeans.

If you are about IDEs, there is Intellij IDEA which is comparatively more "professional" than Eclipse or NetBeans, however here are two problems with it:
- it is free only for SE development, for EE it costs some money (however most of colleagues I know purchase it for their own use at work - it is allowed);
- it really requires a lot of time to learn its most important features (since there are many of them).
Topic archived. No new replies allowed.