我的小程序在浏览器中不起作用
当我尝试在firefox中打开这个html时,我看到了"ClassNotFOundException, applet.NotHelloWord.class"
我花了太多时间在这个无用的应用程序上
我的NotHelloWord.class位于workspaceEclipse/FirstApplet/bin/applet/NotHelloWord.class
我的NotHelloWord.html位于workspaceEclipse/FirstApplet/bin/NotHelloWord.html
在我的NotHelloWord.html
我放了:
<html>
<body>
<applet code="applet.NotHelloWord.class" codebase="Applet" width="300" height="300">
</applet>
</body>
</html>
我的NotHelloWord.java:
package applet;
import java.awt.*;
import javax.swing.*;
public class NotHelloWord extends JApplet {
public void init()
{
EventQueue.invokeLater(new Runnable()
{
public void run()
{
JLabel label = new JLabel("FirstApplet", SwingConstants.CENTER);
add(label);
}
});
}
}