gpt4 book ai didi

java - JNLP 作为 HTML 页面中的 Applet

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:00:40 25 4
gpt4 key购买 nike

我试图在 HTML 页面中运行我的 JNLP,但是 java 插件不运行 JNLP,只运行 Applet。

这是我的代码:

<applet width="800" height="500" codebase="http://127.0.0.1:8888/applets/"
code="br.com.app.server.utils.CompatibilityApplet"
archive="CompatibilityApplet.jar">
<param name="jnlp_ref" value="http://127.0.0.1:8888/applets/testehellojws.jnlp">
</applet>

谢谢。

[编辑]

一个例子:

http://java.sun.com/javase/ja/6/ea/6u10/plugin2/jnlp/CompatibilityApplet.java

<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="6.0+" codebase="http://127.0.0.1:8888/applets/" href="testehellojws.jnlp">
<information>
<title>App Hello</title>
<vendor>My App Jnlp.</vendor>
<homepage href="http://127.0.0.1:8888/Home.html"/>
<description>My App Jnlp</description>
<description kind="short">Appr</description>
<icon href="images/icone.jpg"/>
</information>
<resources>
<j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
<jar href="hello.jar" main="true"/>
</resources>
<application-desc main-class="br.com.app.server.HelloJWS"></application-desc>
</jnlp>

Please edit your question and just let me know it is edited.

好的

Did you miss the part about the documentBase?

我没有。

I would recommend removing the space in the applet name attribute.

完成

Can you run any other JNLP embedded applets? E.G. the small (sand-boxed) GIFanim applet at my site?

What info. do you get reported from here?

java.vendor:Sun Microsystems Inc.
java.version: 1.6.0_26
操作系统名称:Windows 7
操作系统版本:6.1

最佳答案

<application-desc main-class="br.com.app.server.HelloJWS"></application-desc>

这是 Java 应用程序(相对于 applet)的描述符。对于小程序,使用更像..

<applet-desc main-class="br.com.app.server.HelloJWS"></applet-desc>

注意:

  1. 即使这样也不是小程序的正确描述符,它必须明确说明 documentBasenamewidthheight 。查看applet-desc JNLP 文件语法部分了解更多详细信息。
  2. 它必须(当然)是一个小程序。使用此技术无法将应用程序“嵌入”到网页中。
  3. JNLP 和 Java 插件(小程序和 Web 启动都需要)在 Java 9 中被弃用并从 API 中删除

关于java - JNLP 作为 HTML 页面中的 Applet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7313317/

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