创建 JAVA jnlp 文件
您好,这是我用于创建 JNLP 的 xml 文件,即使我指定我的 jar 已位于我的 c:\Users 目录中,我所得到的只是取消了网页导航
<!--
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for TableDemo -->
<jnlp spec="1.0+"
codebase="c:/Users/"
href="TableDemo.jnlp">
<information>
<title>TableDemo</title>
<description>Java Table Demo </description>
<offline-allowed/>
</information>
<resources> <jar href="TableDemo.jar" />
<j2se version="1.6+">
</resources> <application-desc main-class="TableDemo" />
</jnlp>
-->
为什么我无法生成 TableDemo.jnlp 文件?
Hi this is my xml file to create a JNLP all I get is a Navigation to webpage cancelled even though I am specifying that my jar is already located in my c:\Users directory
<!--
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for TableDemo -->
<jnlp spec="1.0+"
codebase="c:/Users/"
href="TableDemo.jnlp">
<information>
<title>TableDemo</title>
<description>Java Table Demo </description>
<offline-allowed/>
</information>
<resources> <jar href="TableDemo.jar" />
<j2se version="1.6+">
</resources> <application-desc main-class="TableDemo" />
</jnlp>
-->
Why can I not produce a TableDemo.jnlp file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将您的代码库更改为:
因为它必须是 URL。
Try changing your codebase to:
as it must be a URL.