Installing Eclipse
Step 1 Install Jdk 17 / 18 from
https://www.oracle.com/java/
Oracle Login Screen
Step 2 After Downloading JDK and Running Setup , Set Jdk
enviornment variables (Check Video)
JAVA_HOME
C:\Program Files (x86)\Java\jdk1.8.0_201\
(Path of Jdk No semicolon)
Step 3 Download and Install Eclipse
https://www.eclipse.org/downloads/
Step 4 Writing a Simple Java Program in Eclipse
Eclipse is an Integrated Development Environment (IDE)
where we can easily write and execute java applications
Open eclipse - > File - > Project - > Java Project
Create a simple Java class
DemoJava -> src (right click) -> new - > class
Main() is entry point of program -> write
System.out.println(“hello); // See Video
Run Java Program
Select java file to run -> right click -> run as -> java
application
Console will give Output -> hello.