JAR 文件中的 Java Applet

发布于 2024-09-04 01:16:46 字数 237 浏览 2 评论 0原文

我创建了一个java小程序(.class文件)并用它制作了一个.jar并对.jar文件进行了数字签名。现在我需要在 Firefox 中将 .jar 作为小程序运行。我应该在 html 代码中添加什么来将 .jar 文件作为小程序运行?我尝试过,但不起作用,它尝试获取 .class 文件,如何使用 Internet Explorer 和 Firefox 中的 applet 标签加载并运行我的 applet 作为 .jar 文件?我在互联网上搜索,找不到答案。

I have created a java applet (.class file) and made a .jar with it and digitally signed the .jar file. Now I need to run the .jar as an applet in firefox. What do I put in the html code to run the .jar file as an applet? I tried and it doesn't work, it tries to get a .class file, how do I load and run my applet as a .jar file using the applet tag in Internet Explorer and Firefox? I searched on the internet and could not find an answer.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

静赏你的温柔 2024-09-11 01:16:46

http://java.sun.com/docs/books/tutorial /deployment/jar/run.html

应该可以工作

<applet code=TicTacToe.class 
        archive="TicTacToe.jar"
        width=120 height=120>
</applet>

(该类有你的 main() 我认为,jar 就是整个东西)

http://java.sun.com/docs/books/tutorial/deployment/jar/run.html

should work

<applet code=TicTacToe.class 
        archive="TicTacToe.jar"
        width=120 height=120>
</applet>

(The class has your main() I assume, the jar is the entire thing)

北笙凉宸 2024-09-11 01:16:46

什么不起作用?有错误吗?至少能表现出来吗?

HTML 很简单:

<applet code="class_that_extends_Applet.class" archive="your_signed.jar">
    <param name="param1" value="value1">
    <param name="param2" value="value2">
</applet>

What doesn't work? Any errors? Does it show up at least?

The HTML is as simple as:

<applet code="class_that_extends_Applet.class" archive="your_signed.jar">
    <param name="param1" value="value1">
    <param name="param2" value="value2">
</applet>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文