Introduction To Java
Introduction To Java
Java Terminology
3. Java Development Kit(JDK): While we were using the term JDK when
we learn about bytecode and JVM. So, as the name suggests, it is a
complete Java development kit that includes everything including compiler,
Java Runtime Environment (JRE), java debuggers, java docs, etc. For the
program to execute in java, we need to install JDK on our computer in order
to create, compile and run the java program.
We have successfully installed Java SE development kit 8. Close the installation set
up.
Right click on "this PC". It can be named as "My Computer" in some systems. Choose
"properties" from the options.
The screen look alike the above image will open. Click on "Advanced system settings"
to continue.
Above window will open. Click on "Environment Variables" to continue.
Enter "path" in variable name and enter the path to the bin folder inside your JDK in
the variable value. Click OK.
Now Java Path has been set up. Open the Command prompt and type "javac" In
case you have already open up the command prompt, I suggest you to close the
existing window and reopen it again.
The Java has been installed on our system. Now, we need to configure IDEs like
Eclipse in order to execute JavaFX applications.
2.Eclipse Installation