微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java后台生成文件给前端下载response输出流

1、设置 ContentType
response.setContentType("application/x-download");

2、设置文件名,并指定编码格式

fileName = URLEncoder.encode("浏览器要显示文件名", "UTF-8");
response.setCharacterEncoding("UTF-8");

3、将文件名 addHeader

response.addheader("Content-disposition", "attachment;filename=" + fileName);

4、读取文件流写入 response

File file = new File(filePath);
try {
       InputStream stream = new FileInputStream(file);

       ServletoutputStream out = response.getoutputStream();

       byte buff[] = new byte[1024];
       int length = 0;

       while ((length = stream.read(buff)) > 0) {
            out.write(buff,0,length);
       }
       stream.close();

       out.close();

       out.flush();

} catch (IOException e) {
       e.printstacktrace();
}

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐