response.setHeader("Content-disposition", "attachment;filename="+new String("中文".getBytes("UTF-8"), "ISO-8859-1"));
response.setContentType("application/vnd.ms-excel");filename中文不返回 需要做转码
response.setHeader("Content-disposition", "attachment;filename="+new String("中文".getBytes("UTF-8"), "ISO-8859-1"));
response.setContentType("application/vnd.ms-excel");filename中文不返回 需要做转码