ok i reinstalled it and it worked. i guess it wasnt compiling right before thats why it wasnt posting all the files in the "classes" folder.
i do have on question anyways. i tried to create an applet, it posted all the files after compiling and all accept when i few the html file it posts "Welcome to Java!!" now that is nice accept my code tells it to print something totally different.
Quote:
import javax.swing.JApplet;
import java.awt.Graphics;
public class applet1 extends JApplet
{
public void paint(Graphics g)
{
g.drawString("To climb a ladder, start at the bottom rung", 20, 90);
}
}
|