我有一个httpclient,它获取一个流式xls文件并将其写入临时文件。但是,响应可以返回带有200代码的错误消息。
无论如何都要检查responseBody在写入文件之前回传。
例如,如果出现错误,它将返回带有ERROR字样的HTML。所以我想检查一下,如果它存在,退出方法并将失败代码返回到前端。
前端使用从extjs网格中调用的AJAXRequest。
public void getReport(String login, String date, String type, String id){
String url = "http://...";
HttpClient client = new HttpClient();
KerberizedNetegrityClient auth;
try {
auth = new KerberizedNetegrityClient();
cookie = auth.getCookieToken();
} catch (NetegrityClientException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
GetMethod method = new GetMethod(url);
method.getParams().setParameter(HttpMethodParams.RETRY_HANDLER, new DefaultHttpMethodRetryHandler(3, false));
method.setRequestHeader("Cookie", cookie);
try{
int statusCode = client.executeMethod(method);
if(statusCode != HttpStatus.SC_OK){
System.err.println("Method Failed: "+method.getStatusLine());
}
file = "file.xls";
InputStream is = method.getResponseBodyAsStream();
BufferedInputStream bis = new BufferedInputStream(is);
FileOutputStream fos = new FileOutputStream(file);
byte[] bytes = new byte[8192];
int count = bis.read(bytes);
while(count != -1 && count <= 8192){
System.err.println("-");
fos.write(bytes,0,count);
count = bis.read(bytes);
}
if(count != -1){
fos.write(bytes,0,count);
}
fos.close();
bis.close();
method.releaseConnection();
System.out.println("Done");
}catch (HTTPException e){
System.err.println("Fatal protocol violation: "+ e.getMessage());
e.printStackTrace();
} catch (IOException e) {
System.err.println("Fatal transport error: "+ e.getMessage());
e.printStackTrace();
}finally{
method.releaseConnection();
}
streamReport(file);
}
答案 0 :(得分:0)
响应应该有content-type
标头。只需检查,如果是text/html
,那么这是一个错误,如果它是application/ms-excel
或application/vnd.ms-excel
(不确定,请检查你的),那就是你想要的。 excel响应通常也有content-disposition
。