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