Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good Java Practices in Ubuntu

Tags:

java

linux

ubuntu

Hey all, my Computational Science course this semester is entirely in Java. I was wondering if there was a good/preferred set of tools to use in ubuntu. Currently I use gedit with a terminal running in the bottom, but I'd like an API browser.

I've considered Eclipse, but it seems to bloated and unfriendly for quick programs.

like image 421
Octaflop Avatar asked Sep 16 '08 00:09

Octaflop


2 Answers

Java editing tends to go one of two ways; people either stick with a simple editor and use a terminal to compile/run their programs, or they use a big IDE with a zillion features.

I usually go the simple route and just use a plain text editor and terminal, but there's still a lot to be said for IDEs. This is especially true when learning the language, since hitting "spam." brings up a dropdown with all of the fields and methods of the spam object. And this is not just useful to a beginner; it remains useful later on when using unfamiliar libraries and third party modules.

IDEs also have useful tools such as GUI builders which become invaluable when doing professional Java work. So although I typically prefer a simple editor/terminal combo, I highly recommend trying out an IDE such as Eclipse or Netbeans to see how you like it and so that you'll know how to use one later on.

like image 58
Eli Courtwright Avatar answered Oct 20 '22 08:10

Eli Courtwright


Eclipse may be bloated for learning needs, but will probably give you the best overall Java experience. Try working through some of the built-in tutorials if you find the interface confusing.

like image 5
Ray Myers Avatar answered Oct 20 '22 10:10

Ray Myers