1. try {
2. // 读取文件并且设置相关参数
3. String filePath = "c:/test.txt";
4. String fileName = "test.txt";
5. File file = new File(filePath);
6. String fileName = new String(fileName.getBytes("gb2312"),"iso8859-1");//取消乱码
7. byte[] buf = new byte[1024];
8. int len = 0;
9. BufferedInputStream br = null;
10. OutputStream ut = null;
11. response.reset();//必须加,不然保存不了临时文件
12. response.setContentType("application/x-msdownload");
13. response.setHeader("Content-Disposition","attachment; filename=" + fileName);
14.
15. br = new BufferedInputStream(new FileInputStream(file));
16. ut = response.getOutputStream();
17. while((len=br.read(buf))!=-1){
18. ut.write(buf, 0, len);
19. }
20. } catch (Exception e) {
21. e.printStackTrace();
22. }
java远程下载excel java实现下载文件
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
java和vue实现文件下载
java和vue实现文件下载
java vue -
sevlet实现下载文件功能
希望做一个小板块,实现文件的上传和下载,那么上传实现了,就需要实现下载,阅读了各位的博客总结了一下。在网页中通过超
servlet java 文件名 绝对路径 -
c++实现下载文件
我们需要使用的W级的句柄得到。 InternetOpen是最先调用的函数,它返回的HINTERNET句柄级别最高,我习惯定义为hSess
句柄 #include #define