HttpSession session=request.getSession();
String logincode= "";
if(this.exportProvider==null){
this.exportProvider=new ExportProviderImpl();
}
if (request.getSession().getAttribute("loginCode")!=null) {
logincode=request.getSession().getAttribute("loginCode").toString();
}
try {
response.setHeader("Content-Disposition", "attachment;filename=" + java.net.URLEncoder.encode("财务批量数据", "UTF-8") + ".xls");
response.setContentType("application/vnd.ms-excel");
HashMap maps=new HashMap();
if (!"86".equals(logincode)) {
maps.put("logincode", logincode);
}
Map m=this.exportProvider.getJigouYear();
List l1=(List)m.get("年");
List l2=(List)m.get("机构");
JSONObject jo=JSONObject.fromObject(m);
response.getWriter().print(jo);
response.getWriter().flush();
response.getWriter().close();
} catch (Exception e) {
e.printStackTrace();
}
return null;
$.ajax({
type: "POST",
url: "../main/exportexclelist2.action",
//json格式接收数据
dataType: "json",
success: function (data) {
alert(data[i]);
}
});
}
response.setContentType("application/vnd.ms-excel"); 这句代码没问题? 你试一下改为"text/html" 对了的话就给分哦
我看你是想实现文件的下载功能,如果下载文件的话,返回JSONObject 肯定是不能获取的。
ajax函数的返回类型只有xml、text、json、html等类型,没有“流”类型,