创建 JAVA jnlp 文件

发布于 2024-10-16 09:21:32 字数 649 浏览 1 评论 0原文

您好,这是我用于创建 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虐人心 2024-10-23 09:21:32

尝试将您的代码库更改为:

codebase="file:///c:/Users"

因为它必须是 URL。

Try changing your codebase to:

codebase="file:///c:/Users"

as it must be a URL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文