Java Tutorial
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.











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.
appropriate song…
This sing rocks i love this jam
and i open compile
dont open helloword
the sistem cant open
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.
Run.bat Code
@echo off
title HelloWorld
“C:Program FilesJavajdk1.6.0_12binjava.exe” HelloWorld
HelloWorld.java code:
public class HelloWorld {
public static void main(String[] args) {
System.out.println(”Hello World.”);
}
}