为了账号安全,请及时绑定邮箱和手机立即绑定

同样的post请求代码在Java和android中执行结果不同。

同样的post请求代码在Java和android中执行结果不同。

PIPIONE 2019-03-20 16:14:49
同样的代码,在JAVA和android里得到的httpresponse不一样为什么呢?主要代码如下。HttpClient httpclient = new DefaultHttpClient();HttpPost httppost = new HttpPost(url);FileBody bin = new FileBody(new File(fileName));StringBody comment = new StringBody("Filename: " + fileName);MultipartEntity reqEntity = new MultipartEntity();reqEntity.addPart("bin", bin);reqEntity.addPart("comment", comment);httppost.setEntity(reqEntity);HttpResponse response = httpclient.execute(httppost);HttpEntity resEntity = response.getEntity();java得到的response内容android得到的:
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 411 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信