vote up 4 vote down star
4

Java is really vast and I want to start learning it. What is the best approach to start from scratch? Should i start with core java? And does any one knows any site/free e-book that explains each and every concept of Java with the help of examples?

I have stressed on site/free e-book as i want to learn along with working.

flag

68% accept rate

16 Answers

vote up 9 vote down check

By far your best bet is Head First Java;

Great for learning something if your a bit green, very clear and well structured text to learn from; http://www.amazon.com/Head-First-Java-Kathy-Sierra/dp/0596009208/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1228917990&sr=8-1

link|flag
+1 for the Head First series – Don Dec 10 '08 at 14:17
Yeah, Head First series are one of the best. – Max Dec 10 '08 at 14:56
I had my first taste of Java with Head First and understood OO with it much better than all books/tutorials on C++ I have read before... ^_^ A pleasant, complete and efficient reading. – PhiLho Dec 10 '08 at 16:44
+1 for HF Java!! Best. Starter. Book. Ever. – kRON Dec 10 '08 at 17:54
I must be crazy in that I found the headfirst books kind of a scatterbrained approach. I often found myself wanting more dense information.. but all to their own. – Simucal Dec 24 '08 at 6:31
show 1 more comment
vote up 0 vote down

Steps

  • Learn general programming constructs
  • Learn OO principle
  • Lean Java by syntax
link|flag
vote up 0 vote down

If you are new to Object oriented programming, you should definitely start with Thinking in Java by Bruce Eckel; free & online at http://www.mindview.net/Books/TIJ/. I think first 8 chapters should set you pretty well on learning OOP. (I have not read head First Java, so cant comment; though Head First books are generally good.) Then get your hands at Head First Design Patterns, which will widen the horizons.. And certainly, start a hobby project or something.

link|flag
vote up 1 vote down
  1. Get a Java Introduction book.
  2. Get a decent programming editor. My favorite for Java is JCreator, but I would use ConTEXT in a pinch. You'll probably want something with Brace Folding and Syntax Highlighting and you'll need an editor with a Command Line so you can compile your projects within your editor via the Java compiler.
  3. Experiment. Create small projects to learn interesting ways of doing things and that will give you a reasonable idea of the kinds of things you can do with Java. Example program: A console menu template that you can reuse for a variety of different projects.
  4. Involve yourself with a Java community, either on the Java site itself or elsewhere.
link|flag
vote up 1 vote down

You are correct that Java is a vast language when you include all of the libraries, frameworks (both Sun's and third party, such as Spring). It is a daunting task to learn it all.

The first question you should ask yourself is what programming background you have. If you know another language and have some programing experience, and entry level tutorial will be boring.

If Java is your first language (it is a reasonably good first language choice). Then I would suggest starting with one of the older versions of Bruce Eckel's Thinking In Java. The third edition is free on his site here: http://www.mindview.net/Books/TIJ/

The Java Tutorials located at: http://java.sun.com/docs/books/tutorial/index.html are an okay place to start as well, but they do not give you much programming background.

If you want to pay for a book, the Head First Java book is very good, as is the current version of Thinking in Java.

link|flag
vote up 2 vote down

Bruce Eckel's "Thinking in Java" is a great book and previous versions are available for free download here.

link|flag
thanks bcash...it looks good – Samiksha Dec 11 '08 at 12:07
vote up 1 vote down

I second the Head First Java proposal. It isn't free, but well worth the money. A book isn't incompatible with working, is it?

Beside, the BlueJ suggestion is a good one. There are alternatives.
The DrJava is "a lightweight development environment for writing Java programs. It is designed primarily for students, providing an intuitive interface and the ability to interactively evaluate Java code.". Slightly more lightweight than Eclipse... Good for quick testing.
I love also Processing. It is based on Java (hiding some tedious parts) and offers a simple access to a graphics library, making easy to make interesting, rewarding small programs (called sketches) with immediate visual feedback.

link|flag
vote up 1 vote down

Consider looking at the BlueJ IDE, its designed to help beginners grasp the concept of OO programming through the visualization. Its used in many universities across the glob and has a book to accompany it.

www.bluej.org

karl

link|flag
1  
Hey did you know that StackOverflow allows displayname collisions? – Karl Dec 10 '08 at 17:28
vote up 3 vote down

Best way to learn any language is to have an idea for a program, and then simply try to write it. It's much better to learn by doing, with some goal in mind.

link|flag
vote up 3 vote down

If you already have some experience of another programming language. Thinking in Java is good book for you. You can find the free ebook http://www.mindview.net/Books/TIJ/.

link|flag
vote up 2 vote down

You might want to take a look at this site: Introduction to Computer Science using Java

It covers all the groundwork and has exercises and includes pop-quizzes.

link|flag
Wow, this looks very useful, thank you! – JDelage Nov 11 at 20:15
vote up 2 vote down

It's not free, but I started with the book "Just Java", by Peter van der Linden. I started with that book because I enjoyed his C book "Deep C Secrets" so much, and I wasn't disappointed. He's a good writer and his asides and footnotes are fun.

link|flag
That is indeed a great book. Well written! – Ruben Steins Dec 10 '08 at 14:16
vote up 5 vote down

Suns own tutorials are pretty nice as well. They can be used as a companion to some book (just don't buy anything that promised to teach anything in 21 days).

link|flag
Yeah, the 'learn in 21 days' books suck. I picked up a C++ in 21 days back in the late 90s. Never again will I waste my money on one of them. – invenetix Dec 10 '08 at 17:58
Actually, I found that "Learn Java 6 in 21 days" was quite a good introduction to the language. Of course, you won't learn everything about Java in just 21 days, but you do get a good starting point from which you can move on and read more complex, in-depth books. – Sandman Dec 24 '08 at 7:43
vote up 1 vote down

get any java book say HEAD's First Series and begin coding

link|flag
vote up 7 vote down
  • Start here and make your hello world app

  • Go here and learn the concepts of OO programming in Java

  • Go here and do some more advanced tutorials

  • Congratulations!

link|flag
If this helped you, maybe you could accept my answer as the correct one? ;) – adam Dec 11 '08 at 9:34
vote up 1 vote down

Sun's website have a comprehensive set of training courses.

There is even one for people with a minimal amount of prior experience.

Strike that they cost mega bucks, try this instead it's their java tutorial.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.