Tutorial: Visual Studio Code and Java

An integrated development environment (IDE) makes writing code easy. Visual Studio Code is an IDE that works well with a variety of programming languages, including Java ☕. This tutorial describes how to set up Visual Studio Code with Java, so you ca…


This content originally appeared on DEV Community and was authored by Edwin Torres ✨

An integrated development environment (IDE) makes writing code easy. Visual Studio Code is an IDE that works well with a variety of programming languages, including Java ☕. This tutorial describes how to set up Visual Studio Code with Java, so you can create Java programs with ease.

Step 1: Install Visual Studio Code

  1. Download the Visual Studio Code installation program for your operating system.
  2. Double-click the installation program to run it.
  3. Accept all defaults during the installation process.

Step 2: Install Java

This tutorial installs OpenJDK, the free and open-source version of Java.

  1. Download the OpenJDK installation program for your operating system.
  2. Double-click the installation program to run it.
  3. Accept all defaults during the installation process.

Step 3: Creating a Java Project

  1. Start Visual Studio Code:

vs1.PNG

  1. Click the extensions icon, circled in red:

vs2.PNG

  1. There are extensions that enhance Visual Studio Code for Java program development. Enter Extension Pack for Java in the text box to find the extension pack, then click the Install button to install the extension:

vs3.PNG

  1. Click the files icon in the top-left, then click the Create Java Project button in the bottom-left:

vs4.PNG

  1. Click No build tools to create a simple Java project in Visual Studio Code:

vs6.PNG

  1. Select a folder location for your Java project. Select Desktop, then click the Select the project location button:

vs6.PNG

  1. In the text box, type a project name, for example: myjavaproject. Then press the Enter key.

vs7.PNG

  1. If prompted to trust the authors, click the checkbox to trust the authors, then click the Yes button to trust the authors:

vs8.PNG

  1. If the Java Help Center window appears, click the x button to dismiss it. In the left window pane, expand MYJAVAPROJECT > src and click App.java to show the program in the editor window. App.java is a sample program that Visual Studio Code provides when you create a new Java project:

vs9.PNG

  1. After a few seconds, you will see Run and Debug links above the main() method declaration in the editor window. Click the Run button to run the Java program:

vs10.PNG

  1. Note the output of the program in the terminal window below the editor window:

vs11.PNG

  1. To create a new Java program in the project, right-click the src folder and click New File. Then type a program filename, e.g., HelloWorld.java and press the Enter key. Now edit your new Java program in the editor window.

v12.PNG

🏆 Congratulations!

You are now ready to develop Java programs using Visual Studio Code. This IDE has advanced features such as inline documentation, auto-complete, syntax checking, a debugger, and more. Java program development will be much easier now!

Thanks for reading. 😃

Follow me on Twitter @realEdwinTorres for more programming tips and help.


This content originally appeared on DEV Community and was authored by Edwin Torres ✨


Print Share Comment Cite Upload Translate Updates
APA

Edwin Torres ✨ | Sciencx (2021-10-30T20:02:39+00:00) Tutorial: Visual Studio Code and Java. Retrieved from https://www.scien.cx/2021/10/30/tutorial-visual-studio-code-and-java/

MLA
" » Tutorial: Visual Studio Code and Java." Edwin Torres ✨ | Sciencx - Saturday October 30, 2021, https://www.scien.cx/2021/10/30/tutorial-visual-studio-code-and-java/
HARVARD
Edwin Torres ✨ | Sciencx Saturday October 30, 2021 » Tutorial: Visual Studio Code and Java., viewed ,<https://www.scien.cx/2021/10/30/tutorial-visual-studio-code-and-java/>
VANCOUVER
Edwin Torres ✨ | Sciencx - » Tutorial: Visual Studio Code and Java. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/10/30/tutorial-visual-studio-code-and-java/
CHICAGO
" » Tutorial: Visual Studio Code and Java." Edwin Torres ✨ | Sciencx - Accessed . https://www.scien.cx/2021/10/30/tutorial-visual-studio-code-and-java/
IEEE
" » Tutorial: Visual Studio Code and Java." Edwin Torres ✨ | Sciencx [Online]. Available: https://www.scien.cx/2021/10/30/tutorial-visual-studio-code-and-java/. [Accessed: ]
rf:citation
» Tutorial: Visual Studio Code and Java | Edwin Torres ✨ | Sciencx | https://www.scien.cx/2021/10/30/tutorial-visual-studio-code-and-java/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.