java编程运行后IE中无法加载插件
<html><head>
<title>A Simple Program</title>
</head>
<body>
here is output of my program:
<applet code="HelloWorld.class" width=150 height=25></applet>
</body>
</html>
import java.awt.*;
import java.applet.*;
public class HelloWorldApplet extends Applet{
public void paint(Graphics g){
g.drawString("HelloWorld",20,20);
}
}