2011-02-07 77 views
0

你好,這是我的XML文件來創建一個JNLP我得到的是一個導航即使我指定我的罐子已經位於我的C到網頁已取消:\ Users目錄創建Java JNLP文件

<!-- 
<?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文件?

+0

dogbane - 感謝編輯 – Kurt 2011-02-07 15:52:11

回答

0

試着改變你的代碼庫:

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

,因爲它必須是一個URL。

+0

嗨dogbane - 沒有沒有工作。我可以使用我的本地主機Joomla網站即<! - 「http:// localhost/Joomla/MyJava /」 - >嘗試它仍然不能正常工作 – Kurt 2011-02-07 16:04:31