Suppose my code is
How do I run above code in jCreatorCode:import java.applet.*;
import java.awt.*;
/*<applet code = "MyApp" height = 400 width = 500></applet>*/
public class MyApp extends Applet
{
public void paint(Graphics g)
{
g.drawString("Hello",100,100);
}
}
I don't want to make any html file