0

可能重复:
将 Java Applet 嵌入到 .html 文件中

我已经谷歌搜索和研究了我仍然不明白我哪里出错了。

我的程序由三个类组成myFramemyRightPanelcalculationEnginemyFrame是扩展的类JApplet,我这样做了:

public class myFrame extends JApplet implements ActionListener {
      //bunch of things here
}

myRightPanel 类和calculationEngine 类由myFrame 实例化和使用。整个代码在 Eclipse 的小程序查看器中运行良好。我面临的麻烦是将其嵌入到 html 中。我这样做了,但它不起作用。

<!DOCTYPE html>
   <html>    
      <body>
         <marquee>
            <h1> Ghun Chaatlo </h1></marquee>
            <applet code="myFrame.class" height="800" width= "1200"> 
            </applet>
        </body>
   </html>

所有文件: .html 和 .class 文件位于同一目录中。但是当我运行 html 时,它不显示小程序。IDK 为什么?请帮忙。

4

1 回答 1

0

看来您使用的是html5。这是将 Java Applet 添加到 HTML5 文档的最佳方法

<object type="application/x-java-applet" height="300" width="550">
  <param name="code" value="Sample" />
  <param name="archive" value="Sample.jar" />
  Applet failed to run.  No Java plug-in was found.
</object>
于 2012-12-28T09:15:32.887 回答