Necessary Instructions
Different JDK versions
Java Installation
Download JDK from https://www.oracle.com/technetwork/java/javase/downloads/index.html
Install it
Editor
Eclipse http://www.eclipse.org/downloads/packages/release/kepler/sr1/eclipse-ide-java-developers
JCreator http://www.jcreator.com/
Path Setting
You need to set the java directory in the path variable if you use JCreator, Command promt.
You can avoid the path setting if you use Eclipse and Netbean. Path is automatically selected by these editors.
Tutorials' Links
The Java™ Tutorials https://docs.oracle.com/javase/tutorial/
javaTpoint https://www.javatpoint.com/java-tutorial
java2s http://www.java2s.com/
Books
Java: A Beginner’s Guide by Herbert Schildt
Java: The Complete Reference by Herbert Schildt
Java: How to Program, 9th Edition (Deitel)
Core Java Volume I — Fundamentals
Command
Normal compile and run: Compile: javac File.java Execute: java File
Package compile and run: Compile: javac -d . File.java Or javac -d .. File.java Execute: java File