Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simple Java IDE for Mac? [closed]

Tags:

java

macos

ide

I am looking for a FREE app that's a bit smarter than a text editor. I want something that can compile Java programs, as a bonus it may have some kind of code-sense.

The programs I'll make are simple console apps that I have to do for school assignments.

I really don't think I'll need a full-blown IDE. After this class, I don't plan on using Java in the future.

I came across this app, but it seems it won't work on OS X 10.5+.

Thanks for looking!

like image 893
Louis Waweru Avatar asked Apr 03 '11 07:04

Louis Waweru


People also ask

Which IDE should I use for Java on Mac?

Available completely free of cost, Xcode is an IDE developed for macOS by Apple. This IDE comes with a multitude of software development tools for iOS, macOS, tvOS, and watchOS. This is certainly the top IDE for Java development on Apple.

What is the easiest Java IDE for beginners?

BlueJ. BlueJ is a popular IDE among experienced Java developers. It is primarily intended for educational purposes and can be used for small-scale software development. It is completely free and the best option for beginner developers.

Which free IDE is best for Java?

IntelliJ IDEA is available in two different editions. The first one is the Apache 2 licensed community edition which is a free and open-source edition and the second one is the proprietary ultimate edition which is a paid edition. The community edition focuses on Android and Java Virtual Machine (JVM) development.

Which IDE should I use for Java?

The three IDEs most often chosen for server-side Java development are IntelliJ IDEA, Eclipse, and NetBeans. These aren't the only options, however, and we'll also discuss a few lighter-weight IDEs. For this review, I did fresh installations of IntelliJ IDEA Ultimate 2022.1.


2 Answers

I'd cast my vote for Eclipse, even if you only think you'll be using Java for a few months. Having a capable IDE to provide error-checking and auto-completion capabilities will save you a bundle of time over using any basic text editor. (And, as The Elite Gentleman has already pointed out, if you take to the environment, you can always continue to use it to develop in a variety of other languages after the course is over!)

like image 185
Steve V. Avatar answered Oct 31 '22 14:10

Steve V.


Here are common GUI based options that you can have a closer look at:

Fullsize IDEs

  • http://eclipse.org/
  • http://netbeans.org/
  • http://jetbrains.com/idea/

Smarter Text Editors

  • http://macromates.com/
  • http://sublimetext.com/
  • http://chocolatapp.com/

Note: I chose the ones that make sense for me. There are also tons of other choices like Smultron, BBEdit and others. You can start browsing for them here:

http://alternativeto.net/software/eclipse/?platform=mac

like image 22
Bijan Avatar answered Oct 31 '22 15:10

Bijan