我有一个Web服务,它接收多部分文件(在c#中),当我通过chrome扩展名(Advanced Rest扩展名)发送一个大文件(15MB)时,文件上传正常,我可以看到正文响应:
<response xmlns="http://schemas.datacontract.org" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Descripcion>blabla</Descripcion>
<Resultado>-9999</Resultado>
<Servicio xmlns:a="http://schemas.datacontract.org" i:nil="true" />
</reponse>
但当我用android打电话时,我得到了200码OK响应的标题,但我不知道如何才能得到主体响应:
这是我的代码:
/****** Informacion exif *****/
DefaultHttpClient mHttpClient;
HttpParams params = new BasicHttpParams();
params.setParameter(CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1);
mHttpClient = new DefaultHttpClient(params);
HttpPost httppost = new HttpPost("HTTPS://SERVICIO.SVC");
httppost.setHeader("Connection", "Keep-Alive");
httppost.setHeader("SOAPAction", "http://tempuri.org/Service1");
httppost.setHeader("identificadorGUID", Guid);
httppost.setHeader("numeroServicio", codigoServicio);
httppost.setHeader("coordenadaLatitud", latitud);
httppost.setHeader("coordenadaLongitud", longitud);
if (QUEES == 0) {
extension = "jpg";
}
if (QUEES == 1) {
extension = "mp4";
}
httppost.setHeader("cuando", cuando);
httppost.setHeader("tipoMultimedia", String.valueOf(tipoMultimedia));
httppost.setHeader("extension", extension);
MultipartEntity multipartEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
FileBody fileBody = new FileBody(fichero, "multipart/form-data");
multipartEntity.addPart("image", fileBody);
httppost.setEntity(multipartEntity);
try {
HttpResponse response = mHttpClient.execute(httppost);
HttpEntity resEntity = response.getEntity();
if (resEntity != null) {
resEntity.consumeContent();
}
BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "UTF-8"));
String sResponse;
StringBuilder s = new StringBuilder();
httppost.getAllHeaders();
while ((sResponse = reader.readLine()) != null) {
s = s.append(sResponse);
}
Log.i("Respuesta web service", sResponse);
}
catch (ClientProtocolException e1) {
e1.printStackTrace();
}
catch (IOException e1) {
e1.printStackTrace();
}
崩溃:java.io.IOException:试图从关闭的流中读取。
如何获取响应来解析它?感谢
在读取信息之前(假设它关闭了流),似乎不应该调用consumeContent()
。如果您使用4.1或更高版本,则此方法已被弃用,您应该使用EntityUtils.consume(HttpEntity)
从它的javadoc:
调用此方法是为了指示不再需要此实体的内容。由于此方法调用,所有实体实现都应释放所有分配的资源。内容流实体还应处置剩余内容(如果有的话)。包装实体应将此调用委托给包装实体。