Java 小程序 ClassNotFoundException
Java Applet ClassNotFoundException
我正在尝试制作一个简单的 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
我在尝试加载页面时收到以下[=36=]错误:
ClassNotFoundException
HellowWorldApplet.class
Java 已安装在机器上,从我完成的所有教程和阅读来看,一切都完全正确。
有什么想法吗??
将以下代码作为多行注释嵌入小程序文件中。
例如:
/*
<applet code="HelloWorldApplet.class" width="320" height="120"></applet>
*/
另存为“HelloWorldApplet.html”
使用javac
命令编译
javac HelloWorldApplet.java
对于 运行 程序使用 appletviewer
命令
appletviewer HelloWorldApplet.html
我正在尝试制作一个简单的 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
我在尝试加载页面时收到以下[=36=]错误:
ClassNotFoundException
HellowWorldApplet.class
Java 已安装在机器上,从我完成的所有教程和阅读来看,一切都完全正确。
有什么想法吗??
将以下代码作为多行注释嵌入小程序文件中。
例如:
/*
<applet code="HelloWorldApplet.class" width="320" height="120"></applet>
*/
另存为“HelloWorldApplet.html”
使用javac
命令编译
javac HelloWorldApplet.java
对于 运行 程序使用 appletviewer
命令
appletviewer HelloWorldApplet.html