0% found this document useful (0 votes)
2 views1 page

Java Installation Steps

The document provides a step-by-step guide for setting up Java development in Visual Studio Code, including downloading JDK 17 and VS Code, and installing the Java Extension Pack. It also outlines the process for running Java code in VS Code by saving the file with the class name and using terminal commands to compile and execute the code. The instructions are straightforward and aimed at beginners in Java programming.

Uploaded by

ironmanarc77
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)
2 views1 page

Java Installation Steps

The document provides a step-by-step guide for setting up Java development in Visual Studio Code, including downloading JDK 17 and VS Code, and installing the Java Extension Pack. It also outlines the process for running Java code in VS Code by saving the file with the class name and using terminal commands to compile and execute the code. The instructions are straightforward and aimed at beginners in Java programming.

Uploaded by

ironmanarc77
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

1.

Download and install JDK 17


2. Open Command Prompt.
Type: java --version
Type: javac –version
3. Download and install VS Code
4. Open VS Code
5. Click the Extensions icon
6. Search for: Extension Pack for Java
7. Click install

How to Run Code in VS Code


1. Save code same as class name
2. Type on terminal javac [Link]
3. Type java filename

You might also like