> Howdy. I'm taking a java class, and they unfortunately just have us
> using the DOS cmd liine and notepad to program. I'd like to use a good
> environment. I used to use Codewarrior. Netbeans came with the Java
> download from Sun, but it overwhelmed me, seems like I'd have to invest
> a lot in learning it. Does anybody know of a sleeker, easier to get
> used to environment?
IMHO full blown IDE's such as Netbeans and Eclipse are huge and
bloated, but unfortunately in the industry pretty indispensible if you
are writing J2EE applications.
For standard Java applications, I find heavyweight IDE's more of a
hinderance than a help. Certainly at the level you are at (Learning
Java) they will get in the way more than they will help.
My personal recommendation is to use jEdit (
www.jedit.org), since it a
superb text editor (leaving NetBeans and Eclipse far behind in as far
as the editor components go), and is extensible with a host of standard
plugins and macros. The only plugin you will want to start with is the
Console plugin, which will let you write Java program in the editor,
and compile and run them in the integrated console without having to
manually type in the commands each time.
In addition, jEdits console plugin comes with a Beanshell interpreter,
which is great for testing out snippets of Java code to see what it
does without the full compile - run cycle.