0

我目前有一个相对简单的 Java 小程序,我正在尝试将它嵌入到 html 页面中。我环顾四周,并没有找到合适的答案。许多答案是指使用不推荐使用的<applet>标签,其余的似乎对我不起作用。

这是我的页面的正文。我最初尝试使用该<applet>标签并且它有效,但是我无法让它使用页面的整个高度,然后我发现它无论如何都已被弃用。

我已经在 Firefox、Chrome 和 IE 上尝试过这个,但在其中任何一个上都不起作用。它只显示替代文本。

我确实读到该<object>标签仅适用于 IE,但即便如此它对我也不起作用。同样,我发现的大部分信息都是过时的。

<body>
  <object width="500" height="500" data="project">Your browser does not support the <code>object</code> tag.
  </object>
</body>
4

1 回答 1

0

Ive had no problems using the applet tag to get applets to display to a desired width and height. All the Java resources point to using the same tags. I'm no html guru though, so I'm not sure if there's another solution.

    <applet code= "myJavaApplet.class" width="600" height="700">textgoeshere</applet>
于 2012-11-17T04:16:44.513 回答