Configuring IntelliJ IDE for Java Projects
IntelliJ IDEA is an integrated development environment written in Java for developing computer software.
Download IntelliJ Developer edition which is IntelliJ CE
Now Configure IntelliJ:
Step 1: Click on IntelliJ IDEA application.
Step 2: If this is your first time, it open a welcome screen. Click on Create New Project.
Otherwise, from the main menu, select .
Step 3: In the New Project wizard, select Java from the list.
Step 4: To create a Java project, sdk file is needed. If it already in the system, select Add JDK and specify the path to the JDK home directory.
Note: All the projects in this blog are by using JDK 11
If you don't have the necessary JDK on your computer, select . In the next dialog, specify the JDK vendor (for example, OpenJDK), version, change the installation path if required, and click Download.
This takes you to the next step of creating a Java application which can be done from
Comments
Post a Comment