Screenshot 4

Getting Started With Java + IDE Installation #13 min read

Hey Programmers, In this Blog Post We will be Learning Java Programming which will Later Help you in Android Development to Create Awesome Apps & Games. Java is Also Used to Develop System Apps or Computer Applications.

In This Post We will be Doing the Following (Contents Of the Blog) :

  • History of Java
  • Features of Java Programming
  • Download & Installing IDE For Java Development
  • Setting Up Java For Further Programming
  • Writing Our First “Hello World” Program In Java
1200px James Gosling 2008

Creator of Java:

History Of Java:

Java was created at Sun Microsystems, Inc., where James Gosling led a team of researchers in an effort to create a new language that would allow consumer electronic devices to communicate with each other. Work on the language began in 1991, and before long the team’s focus changed to a new niche, the World Wide Web.

Features of Java Programming:

  • Object Oriented. In Java, everything is an Object
  • Platform Independent
  • Simple
  • Easy to Learn
  • Portable
  • Multithreaded

Downloading IDE For Java:

As We all Know that Before Getting Started with Any Programming Language We need a IDE Which Stands for Integrated Development Environment which Helps us to Interact with the Language.

So The Best IDE For Java Programming which I Recommend is:

  • IntelliJ IDEA
  • VS CODE (Microsoft Visual Studio Code)

In my Case I will be Using Vs Code as my Primary IDE for Java Programming, So to Run Java In Vs Code We Need a Module for That:

Java In Visual Studio Code

Install the Above Package In Order to Run Java In Vs Code

image 3
  • Click On Next And Install It!

Downloading IntelliJ IDE

  • Search “Download IntelliJ IDE” On Google
image 4
  • Click On the First of Link of JetBrains Website
image 5
  • Download the Community Version It’s Free to Use & And Fulfill All the Needs
  • Congrats! You Have Downloaded the IDE Now, Just Run the Setup & Install I As you Install Softwares

Writing Our First “Hello World” Program In Java

So Let’s Write Our First Hello World In Java:

// Hello World In Java
class HelloWorld {
    public static void main(String[] args) {
        System.out.print("Hello, World!");
    }
}
  • Click On the “RUN” Button, it might take some time if you have a low-end Pc But Don’t Worry It will Run.

So this Was it for this Blog See you in the Next One Till Then Keep Coding Keep Exploring!

Tanmay Sinha

One comment

Leave a Reply