Hi all,
i want to ask u guys what else i need to do to run this code?
i have JDK. i have these file in my c:/program files/java/jdk1.6.0_16
c:/program files/java/jdk1.6.0_18 c:/program files/java/jre6.
if i want to run this code,what do i need to do?
import java.awt.graphics;
class HelloWorldApplet extends java.applet.Applet
{
public void paint(Grphics g)
{
g.drawingString("Hello World!!!",5,25);
}
}
do i need to save the helloworld file inside c:/program files/java ?
im a new leaner...im reading a book teach yourself java in 21 days.but a bit conufse about the compiler or interpreter...
:'(