Learning Java , Class , Eclipse -- Lession1

Lession 1

Java is a Object Oriented programming language developed by Sun Microsystems in 1995 and developed by james Gosling and his team.

Today in current market there are many software applications and websites that are running using java and  will not work without java in our system.

Java is fast, secure, and reliable, almost every device like laptops, mobiles, game, internet all applications uses Java.

To practice Java programs

Softwares you can use

1. Download java jdk from oracle website and install (it will not require any license, below is the link)
     http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html

2. We can use Eclipse IDE to write java programs and run so Download Eclipse IDE from
   www.eclipse.org
         Download Eclipse Standard version
         After download Extract the zip file into your local system
         Open Eclipse IDE from Eclipse extracted folder
         give the workspace any folder and continue
         In Eclipse--File menu---Create new java project
==========
3. Create a new class in the project

    ex: class name you enter Sample  then

     Class Sample
     {
       public static void main(String args[])
       {
         System.out.println("Hello Java");
       }
     }

  write the above program and Run

  All the best...Will continue in Next lesson
      

Comments