OutputStream os = response.getOutputStream(); 
response.reset();
response.setHeader("Content-disposition", "attachment; filename=xxx.xls");   
response.setContentType("application/msexcel");
//poi或者jxl操作execl
然后关闭流