Handango Inc.

Java Tutorial

by admin on Saturday 13 March 2010


This video will show you how to make a simple java code from scratch in Windows Vista.I learned the new javac code the hard way but maybe you don’t have to. {DISCLAIMER} Java the coding language is not my language.It is owned by Java and JDK is made by Java Sun Microsystems.

  • Digg
  • Facebook
  • Yahoo! Buzz
  • Twitter
  • Diigo
  • Propeller
  • StumbleUpon
  • Faves
  • Mixx
  • Tumblr

7 Comments »

  1. Comment by Salien1999 — March 13, 2010 @ 4:13 pm

    If you don’t have vista, for example, if you have windows xp, you just need to put this

    @echo off
    title Compiling
    javac *.java
    title Compiled
    pause

    or you just haven’t installed Java Development Kit.

  2. Comment by Jakesta42 — March 13, 2010 @ 4:58 pm

    appropriate song…

  3. Comment by RHAMES1234 — March 13, 2010 @ 5:55 pm

    This sing rocks i love this jam

  4. Comment by jose6aa — March 13, 2010 @ 6:36 pm

    and i open compile
    dont open helloword
    the sistem cant open

  5. Comment by Salien1999 — March 13, 2010 @ 6:48 pm

    Compile.bat Code:

    @echo off
    title Compiling
    “C:Program FilesJavajdk1.6.0_12binjav ac.exe” *.java
    title Compiled
    pause

    There is a space between jav and ac in this code please remove the space before saving it.

  6. Comment by Salien1999 — March 13, 2010 @ 7:46 pm

    Run.bat Code

    @echo off
    title HelloWorld
    “C:Program FilesJavajdk1.6.0_12binjava.exe” HelloWorld

  7. Comment by Salien1999 — March 13, 2010 @ 8:12 pm

    HelloWorld.java code:

    public class HelloWorld {
    public static void main(String[] args) {
    System.out.println(”Hello World.”);
    }
    }

RSS feed for comments on this post. TrackBack URI

Leave a comment

Copyright © 2010 IT Knowledge Hub LLC | Advertise | Contact | Privacy Policy | Terms of Use | Register