0% found this document useful (0 votes)
11 views6 pages

Installing Eclipse

How to install ECLIPSE and Configure Java

Uploaded by

roliguide
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views6 pages

Installing Eclipse

How to install ECLIPSE and Configure Java

Uploaded by

roliguide
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

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.

You might also like