保存excel下栽

来源:互联网 发布:刷机精灵 微信数据恢复 编辑:程序博客网 时间:2024/05/22 06:18
  //magExcel下载
    public void downloadExcel(Map<String,Object> para, HttpServletRequest request, HttpServletResponse response) throws Exception{
        response.setContentType("application/vnd.ms-excel;charset=utf-8");
        response.setHeader("Content-Disposition", "attachment;filename="
                + new String((MapUtils.getString(para,"fileName")).getBytes(), "iso-8859-1"));


        IOUtils.write( creatExcel( para), response.getOutputStream());
    }