Java Applet ClassNotFoundException

时间:2015-01-13 09:20:30

标签: java html applet

我正在尝试创建一个简单的Applet,它证明比我预期的更具挑战性。

我有以下非常基本的小程序:

import java.applet.*;
import java.awt.*;

public class HelloWorldApplet extends Applet
{
   public void paint (Graphics g)
   {
      g.drawString ("Hello World", 25, 50);
   }
}

在记事本中创建并保存为:

HelloWorldApplet.java

然后在同一个文件夹中我有以下HTML文件:

<html>
<title>The Hello, World Applet</title>
<hr>
<applet code="HelloWorldApplet.class" width="320" height="120">
If your browser was Java-enabled, a "Hello, World"
message would appear here.
</applet>
<hr>
</html>

在记事本中创建并保存为:

HelloWorldApplet.html

尝试加载页面时,我收到以下错误

ClassNotFoundException

HellowWorldApplet.class

Java安装在机器上,从我所做的所有教程和阅读中,一切都完全正确。

任何想法??

1 个答案:

答案 0 :(得分:3)

将以下代码作为多行注释嵌入applet文件中。

例如:

/*
<applet code="HelloWorldApplet.class" width="320" height="120"></applet>
*/

将其另存为“ HelloWorldApplet.html

使用javac命令编译

javac HelloWorldApplet.java

使用appletviewer命令运行程序

appletviewer HelloWorldApplet.html