我試圖在HTML頁面中運行我的JNLP,但是java插件不運行JNLP,只運行Applet。JNLP作爲HTML頁面中的小程序
這裏是我的代碼:
<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>
請編輯您的問題,只是讓我知道它是編輯。
OK
你錯過有關文檔基的一部分嗎?
我沒有。
我建議刪除applet name屬性中的空格。
完成
你可以運行任何其他JNLP嵌入式小程序?例如。我的網站上的小型(沙盒)GIFanim小應用程序?
是
什麼信息。你從這裏得到報道嗎?
java.vendor:Sun Microsystems公司
java.version:1.6.0_26
os.name:Windows 7的
os.version:6.1
我已更新該問題。 – caarlos0