我开发了一个应用程序,我想把它放到网上。当我生成一个普通的jar(不打算用于web启动)时,应用程序运行得很好。
我生成了一个JNLP文件,用于Netbeans的web部署。当我尝试用web启动运行应用程序时,我得到以下异常:
file:/C:/Users/Stefan/git/yt/WV/dist/Wetenschappelijke_Vorming.jar!/res/loading.svg does
not exist or could not be read java.net.MalformedURLException
引起问题的那段代码:
loading = this.loadShape(this.getClass().getResource("/res/loading.svg").getPath());
当我注释掉所有与我试图加载的文件相关的代码时,Webstart运行应用程序没有问题。(我检查了jar和文件位于它应该在哪里!)
我需要引用JNLP文件中的图像吗?我有点困惑,我一直在寻找解决办法,但似乎找不到一个。
是生成的JNLP文件:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jnlp codebase="file:/C:/Users/Stefan/git/yt/WV/dist/" href="launch.jnlp" spec="1.0+">
<information>
<title>Wetenschappelijke Vorming</title>
<vendor>Stefan</vendor>
<homepage href=""/>
<description>Wetenschappelijke Vorming</description>
<description kind="short">Wetenschappelijke Vorming</description>
</information>
<update check="always"/>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5+"/>
<jar href="Wetenschappelijke_Vorming.jar" main="true"/>
<jar href="lib/controlP5.jar"/>
<jar href="lib/core.jar"/>
<jar href="lib/jsoup-1.7.2.jar"/>
<jar href="lib/pdfbox-app-1.7.1.jar"/>
<jar href="lib/mysql-connector-java-5.1.22-bin.jar"/>
<jar href="lib/ESAPI-1.4.5a.jar"/>
<jar href="lib/lucene-analyzers-common-4.2.0.jar"/>
<jar href="lib/lucene-core-4.2.0.jar"/>
<jar href="lib/lucene-demo-4.2.0.jar"/>
<jar href="lib/lucene-queryparser-4.2.0.jar"/>
<jar href="lib/commons-math3-3.1.1.jar"/>
<jar href="lib/lucene-queries-4.2.0.jar"/>
<jar href="lib/gson-2.2.3.jar"/>
<jar href="lib/deploy.jar"/>
<jar href="lib/jsse.jar"/>
<jar href="lib/management-agent.jar"/>
<jar href="lib/plugin.jar"/>
<jar href="lib/resources.jar"/>
<extension href="jnlpcomponent1.jnlp"/>
</resources>
<application-desc main-class="visualisation.Application">
</application-desc>
</jnlp>
在getResource()
返回的URL上调用getPath()
的结果可能在您的文件系统上有效,但在其他地方无效。使用getResourceAsStream()
读取资源