Re: [問題] 請問如何開發 Java Web Start 的程式?
恩…我又來自問自答了@@"
STEP 1 (如果此程式有需要存取檔案的話,需要建立認証,來確保此程式的發行人)
keytool -genkey -keystore myKeystore -alias myself
//建立你的public key
keytool -selfcert -alias myself -keystore myKeystore
//由你的pubilc key 建立一個 private key
jarsigner -keystore myKeystore test.jar myself
//將你的jar檔用你的private key來簽章
//註解的地方不知道有沒有錯@@" 有錯的話請指正,謝謝^^
STP2
把包好的 jar 檔放到 web server 上,有些web server不支援的話,似乎需要設定。
STEP3
建立一個 jnlp 檔
<jnlp spec="1.0+" codebase="" rel="nofollow">http://xxxx.xxx.xx/xxx"> (jar所在位置)
<information>
<title> test </title>
<vendor> Nt1 </vendor>
<homepage href="none"/>
<description> a sample program demonstrate jws </description>
</information>
<offline-allowed/>
<security>
<all-permissions/>
</security>
<application-desc main-class="mainclass" /> (含有 main method 的class)
<resources>
<j2se version="1.4+" />
<jar href="myJAR.jar"/> (jar檔名)
</resources>
</jnlp>
參考網站:
http://java.sun.com/j2se/1.4.2/docs/guide/jws/developersguide/development.html
http://java.sun.com/j2se/1.4.2/docs/guide/jws/developersguide/syntax.html
有錯…請指正@@~~
謝謝
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 220.135.145.131
討論串 (同標題文章)
java 近期熱門文章
PTT數位生活區 即時熱門文章