1.post方式提交时传参
method.setRequestBody(new NameValuePair[]{new NameValuePair(key, param)});
在使用post提交时,传参需要使用NameValuePair类。
2.乱码
class UTF8PostMethod extends PostMethod{
public UTF8PostMethod(String url){
super(url);
}
@Override
public String getRequestCharSet(){
return "UTF-8";
}
}
网友评论