//直接将字符串下载
@RequestMapping(value="/down",method=RequestMethod.GET)
public void down(HttpServletResponse res) throws IOException{
res.setContentType("text/html;charset=UTF-8"); //防中文乱码
res.setHeader("content-disposition", "attachment;filename=" + URLEncoder.encode("中.txt", "UTF-8")); //设置下载
String sw="as神sad"; //直接将字符串下载
res.getWriter().print(sw);
res.getOutputStream().write(sw.getBytes()); 以流的方式下载
}
导出excel