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

Author

  • Tanmay Sinha

    Founder & CEO of MrProgrammer.in | I help Learning Freaks to Step into the World of Programming and Our Mission is to Provide High Quality and Valuable Content to Our Users! We believe that everyone has the potential to learn to code, and we are committed to making that happen. Our courses are designed to be engaging and interactive, and we offer a variety of learning paths to meet the needs of all learners. We are also committed to providing our learners with the support they need to succeed, and we offer a variety of resources to help learners learn at their own pace. If you are interested in learning to code, we encourage you to check out our courses. We are confident that you will find our content to be high-quality, valuable, and makes sense.

One comment

Leave a Reply