Java is one of the most widely used programming languages in the world, known for its platform independence and robust features. In this tutorial, we’ll guide you through the process of installing Java on your computer.
To start, download the Java Development Kit (JDK) from the official Oracle website:
Follow the steps below to install the JDK:
.dmg
file and follow the on-screen instructions.Applications
folder.sudo apt install openjdk-17-jdk
on Ubuntu).To ensure Java is installed correctly, open your terminal or command prompt and type:
java -version
You should see output showing the installed version of Java.
If you want to run Java from any directory, you may need to set the JAVA_HOME
environment variable:
Environment Variables
in the Start menu.New
and set JAVA_HOME
to the JDK installation path.%JAVA_HOME%\bin
to the Path
variable..bashrc
or .zshrc
).export JAVA_HOME=/path/to/jdk
export PATH=$JAVA_HOME/bin:$PATH
source ~/.bashrc
.Create a file named HelloWorld.java
with the following code:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
Use the following commands to compile and run your program:
javac HelloWorld.java
java HelloWorld
Output:
Hello, World!
Now that Java is installed, explore its features by writing and running more programs. Understanding Java is key to building robust, cross-platform applications. Happy coding! Now you can learn about variables!