作者Nt1 (用功点吧!)
看板java
标题Re: [问题] 请问如何开发 Java Web Start 的程式?
时间Wed Feb 8 06:18:20 2006
恩…我又来自问自答了@@"
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="
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