JAVA Programming

Please click on the topic headings to read the full article/post
  • Basic Java Tutorial #2 - Simple Objects-

    Written by Risharde R. exclusively for GeekVS.com

  • Basic JAVA Programming Tutorial #1-

    Written by Risharde Ramnath for GeekVS.COM

    JAVA Programming was developed by Sun Microsystems. You can download and or read more about JAVA by visiting the official JAVA website at http://java.sun.com . You'll also want a nice application to code your files in. I recommend JCreator or Netbeans IDE but if even notepad can be used to type up your code. Just search for these applications in Yahoo.


    Building your first "Hello World" JAVA application.

    Open the editor of your choice and save the filename as helloworld.java (it is important that you save it with this EXACT name)

    In the helloworld.java file type the following code 

    import java.io.*; 

    public class helloworld {

         public static void main(String[] args) {

                   System.out.println("Hello World!"); // This outputs Hello World to the screen

         }

    }