我尝试创建我的第一个 Applet。称为 MemoSaver2.java
我还创建了html:
<html>
<object classid="java:MemoSaver2.class"
type="application/x-java-applet"
archive="MemoSaver2.jar"
height="300" width="450" >
</object>
</html>
还有这个:
<html>
<head>
<title>Memo saver applet</title>
</head>
<applet code="ch13.MemoSaver2.class" width = 600 height= 400>
Java is not installed.
</applet>
</html>
但我总是得到同样的错误。
NoClassDefFoundError MemoSaver2(错误名称:ch13/MemoSaver2)
从浏览器运行我的小程序应该怎么做?