gpt4 book ai didi

java - 在html中集成applet?

转载 作者:行者123 更新时间:2023-11-30 04:41:26 29 4
gpt4 key购买 nike

<html>
<applet code="de.wim.outldd.examples.DragDropTest_ModeMemoryStream" archive="outIdd.jar" width="500" height="500"/>

</html>

我尝试打开这个applet在 HTML 中,但我收到 ClassNotFoundException。 html 与 .jar 位于同一目录中。在代码属性中,我将目录结构放入 .jar 中的类中。有人请尝试这些。

最佳答案

<applet 
code="de.wim.outldd.examples.DragDropTest_ModeMemoryStream"
archive="outIdd.jar"
width="500"
height="500"/>

applet 元素原本打算是自关闭的,即 jar 名称中的小写“l”(代表 Lucy)而不是大写“I”(代表 Imogen)。所以该元素应该类似于:

<applet 
code="de.wim.outldd.examples.DragDropTest_ModeMemoryStream"
archive="outldd.jar"
width="500"
height="500">
</applet>

关于java - 在html中集成applet?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12187666/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com