Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Learning Java 2

Status
Not open for further replies.

Palmyra

Programmer
Jan 5, 2007
150
0
0
US
I want to learn to program using Java. I did some online tutorials just writing code in Notepad. Am also reading a book. I'm trying to get my home computer set up and am having a hard time even knowing what to download. There's so much information that it's overwhelming. I can't even tell which version I should be using. Can someone point me to, or tell me, a good starting point?
 
hi Palmyra,

Welcome Aboard

I want suggest something:

1) Download Eclipse:
although you have something other to learn,
for a beginner, it is very useful have "someone" that:
suggests how to complete a statement,
which class members you can refere in that point for the current object,
have directely the signaling about syntax/compile error.
(Eclipse is what I use, there are also other development tools)

2) have a goal:
Java (just core) is incredibly wide, respect other languages I knew. I read in your profile that you "surf" in DB area:
start here using JDBC to access to DB that you know.

3) begin with no graphic output:
Write the output of your DB queries on stdout.
Later choose one of the graph environment: AWT or SWT or SWING

4) continue to study about inheritance and polymorphism:
but ignore it, now, writing programs.
When Java will be for you more friendly,
you could appreciate their powerful.

5) remain now inside Eclipse:
later you can export the same program, with external library
if used, to pack it in a JAR, and launch it from win/linux command line.

.....

however we are here !

ciao
vittorio

 
Thank you both for responding and for the info. I'll take your advice!
 
I jumped into Java using the "Head First Java" book from O'reilly. It was very nice for beginners. They teach you the basics using non-gui java programming. I found it difficult to use Eclipse because not only are you overwhelmed with a new language, but a new program as well.

Now I use NetBeans instead of Eclipse. Bother are great! I just found the NetBeans IDE easier to use.

Good luck!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top