Java Setup in Visual Studio Code

Опубликовано: 30 Март 2026
на канале: BackCoding
211
5

#BackCoding

Launch a simple Java application after setting up a local development environment.

We are going to keep this as short and as simple as possible. You will be able to get Java code up and running in your VSCode environment in less than five minutes.

These are the tools we will be installing:

Visual Studio Code
Java Development Kit (JDK)

We are going to follow the directions and create a new file. Inside this file we are going to put the following code:

class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World.");
}
}
When you click the “Run” button (or hit F5) you should see this output in the console:

#java
#programming