按照您的方法在最后一步总是提示:
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