如何在浏览器中运行Java Applet(使用CMD)

时间:2019-03-23 08:40:39

标签: java applet

我知道,现在没有人使用applet,但是我的本科学位仍在课程提要中!

这是我的HelloWorld.java文件代码

import java.applet.Applet;
import java.awt.Graphics;

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

这是我的Hello.html文件代码

<html>
    <body>
        Here is the output of my program:
        <applet code="HelloWorld.class" width="150" height="25"></applet>
    </body>
</html>

两个文件均保存到桌面。

这就是我所做的:

  1. 打开CMD
  2. 键入cd desktop
  3. 键入javac HelloWorld.java
  4. 在Chrome,Opera,Firefox,Microsoft Edge中打开Hello.html文件

没有浏览器运行小程序!普通的Java(AWT)程序是使用CMD运行的,而不是使用applet运行的。

我正在使用的JDK和JRE版本分别是jdk1.8.0_201和jre1.8.0_201。

1 个答案:

答案 0 :(得分:2)

使用以下命令:

where

另存为“ HelloWorld.html”

/*
<html>
<applet code="HelloWorld.class" CodeBase="" width=300 height=400></applet>
</html>
*/