response.setContentType("application/x-download")//设置为下载application/x-download
String filedownload = "/要下载的文件名"//即将下载的文件的相对路径
String filedisplay = "最终要显示给用户的保存文件名"//下载文件时显示的文件保存名称
String filenamedisplay = URLEncoder.encode(filedisplay,"UTF-8")
response.addHeader("Content-Disposition","attachmentfilename=" + filedisplay)
编码思路(一)封装list集合信息使之输出到txt、excel等文件中;
(二)通过ZipOutputStream实现对文件压缩 *** 作;
(三)使用HttpServlet提供与用户进行下载,下载完成后,删除文件。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)