我已经谷歌搜索和研究了我仍然不明白我哪里出错了。
我的程序由三个类组成myFrame
:myRightPanel
和calculationEngine
。myFrame
是扩展的类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 为什么?请帮忙。