How create a new project in java

Rate this post

JDK and Creating a New Project

Table of Contents

What is JDK?

JDK stands for Java Development kit. The JDK software provides an environment to develop java applications.

 

JDK package contains the following elements

  • JRE Java Runtime Environment
  • JVM Java Virtual Machine
  • Tools and libraries to help in software development

 

Develop First Program on IntelliJ

 

Run IntelliJ and click on New Project option

welcome

Now Select Maven at the sidebar and click on the Next button as we are creating a Maven project. SDK/JDK version already set here.

select_maven

Now Enter the name for your project, myTestProject and click on the Finish button.

Note: There should not be any space in the project name

 

1st_project

Now, the Maven project is created.

In the next post, we will learn how to add libraries.