第一种既然你使用了post,可以把m=Fans&a=fansList 这两个参数都写在data的参数里面写死,
第二种自己拼接需要请求的url字符串
给http post传参,参考以下二个实例://serverURL url地址
HttpPost httpPost = new HttpPost(serverURL)
//param 为参数
StringEntity entity = new StringEntity(param)
entity.setContentType("application/x-www-form-urlencoded")
httpPost.setEntity(entity)
HttpResponse httpResponse = httpClient.execute(httpPost)
还可以用map作为参数
List<NameValuePair>formparams = new ArrayList<NameValuePair>()
if(param!=null){
Set set = param.keySet()
Iterator iterator = set.iterator()
while (iterator.hasNext()) {
Object key = iterator.next()
Object value = param.get(key)
formparams.add(new BasicNameValuePair(key.toString(), value.toString()))
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)