试图让这个 jnlp 工作,但它一直说 noclassdef found
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.5+" xmlns:jfx="http://javafx.com" href="$$name" codebase="$$codebase">
<information>
<title>test</title>
<vendor>test</vendor>
<homepage href="../index.html" />
<description>test</description>
<icon href="images/icon.jpg" />
<offline-allowed/>
<shortcut online="true">
<desktop/>
<menu submenu="test Applications"/>
</shortcut>
</information>
<icon href="images/icon.jpg" kind="default"/>
<resources>
<j2se version="1.7+" max-heap-size="128m" initial-heap-size="32m" />
<jar href="tester.jar" version="1.0.6" main="true"/>
<property name="jnlp.versionEnabled" value="true"/>
</resources>
<security>
<all-permissions/>
</security>
<application-desc height="600" width="800" main-class="com.javafx.main.NoJavaFXFallback" name="Tester"/>
<jfx:javafx-desc main-class="tester.App" name="Tester"/>
<update check="always" policy="always"/>
</jnlp>
但是 java 控制台在崩溃之前只打开了一秒钟。如果我删除 NoJavaFXFallback(运行 java 7u25),它会显示 noClassDeffound javafx/application/application
有没有人有一个不应该尝试自动下载 javafx 的 Intranet 应用程序的工作 jnlp?