2010年9月12日 星期日

[ Java 小學堂 ] Java Web Start 簡單範例

前言 : 
在前面簡介後, 我們這裡將以一個簡單範例進行示範. 

示範說明 : 
1. 首先我們先撰寫一個簡單的GUI 程式並包裝成 jar 檔 (TestJNLP.jar). 
2. 接著我們撰寫一個 JNLP 檔案. 檔案範例如下 : 

- testjnlp.jnlp 設定 :
  1. "1.0" encoding="UTF-8" standalone="no"?>  
  2. "http://localhost/JNLP/" href="testjnlp.jnlp" spec="1.0+">  
  3.       
  4.           
  5.         John-Lee  
  6.         "http://localhost"/>  
  7.         TestJNLP  
  8.         "short">TestJNLP  
  9.       
  10.           
  11.       
  12.       
  13. "1.5+"/>  
  14. "true" href="TestJNLP.jar" main="true"/>  
  15.       
  16.     class="testjnlp.MainFrame">  
  17.       
  18.   

3. 接著將這兩個檔案放到 Tomcat Server (使用 apache-tomcat-6.0.20) 上面, 並可以在下面的網址進行下載動作 : 
localhost/JNLP/jnlptest.jnlp # 下載 jnlp 檔案 
localhost/JNLP/TestJNLP.jar # 下載 jar 檔案 

4. 請執行下面命令 : 
C:\Users\John-Lee\Downloads>javaws testjnlp.jnlp 

5. Java 根據 jnlp 設定下載對定的 jar 檔 () : 
 

6. 下載完畢後, 並依據 jnlp 設定執行 Main class (testjnlp.MainFrame) 
 

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...