按照您的方法在最后一步總是提示:
keytool錯誤: java.io.IOException: Invalid keystore format
請問可能是什么原因?
哥們,給我發一個吧:okhaoba@hotmail.com
我的方法:
HttpClient client = new HttpClient();
//設置超時時間
client.getHttpConnectionManager().getParams().setSoTimeout(timeOut);
//使用post方式,參數長度不受限制
//postMethod = new PostMethod(url);
postMethod = new UTF8PostMethod(url);
//設置參數
NameValuePair[] nameValue = new NameValuePair[] { new NameValuePair("××param", xmlParamStr) };
postMethod.setRequestBody(nameValue);
//發送請求
state = client.executeMethod(postMethod);
private static class UTF8PostMethod extends PostMethod {
public UTF8PostMethod(String url) {
super(url);
}
@Override
public String getRequestCharSet() {
//return super.getRequestCharSet();
return "UTF-8";
}
}
re: Install4j介紹 okhaoba 2008-01-11 15:00
剛剛看了你的Install4j的介紹,感覺不錯,也給我發一個吧,
okhaoba@hotmail.com
謝謝。
re: 一個很好的把java打包成exe的軟件 okhaoba 2008-01-11 13:09
謝謝樓主分享,希望還為時不晚
okhaoba@hotmail.com