JB said:
I'm pretty new to Java, just "barely" getting the basics. I've heard
alot about IDE software like netBeans, etc, but didn't know if anyone
on here uses, or would recommend using one.
I /strongly/ advise you to avoid heavy-weight IDEs like Netbeans or Eclipse.
Considered as just basic editors and debuggers they are less than
satisfactory -- their main plus point is that they make complicated things
easier, but you won't be wanting to do complicated things yet. So they'll just
be confusing.
If you want to use an IDE at all, then probably the best option would be one
that is designed as a teaching tool rather than as a tool for working
programmers (who have very different needs from learners). BlueJ is a good
choice here, but there are others.
Alternatively you may prefer to avoid IDEs altogether, and that's not a bad
idea either (especially if you are already a programmer and only new to Java).
If so then use your favourite text editor and the command line tools which come
with a JDK download.
If you are new to programming, or even just new to OO programming, then I'd
recommend trying BlueJ. One of the main features of its design is that it
gives you a reasonable introduction to what "objects" are -- something that
you'll get from no other Java toolset.
Of course, you could always try both approaches at the same time...
-- chris