qq_18296295 2018-04-09 11:01 采纳率: 40%
浏览 4463
已采纳

服务端生成一个word文件 如何返回下载链接

我在程序里生成一个word放到 服务器里 比如放到D盘 然后要怎么返回这个word的 下载链接 然后我在本地直接访问链接就能下载

  • 写回答

5条回答

  • threenewbee 2018-04-09 11:31
    关注

    如果d盘不是你web服务器的路径,你可以用FileInputStream

    String basePath = request.getSession().getServletContext().getRealPath("d:/路径");  
            //System.out.println(basePath);  
            String filedisplay = "文件名.doc";  
            String filedownload = basePath + File.separator + "文件名.doc";  
            System.out.println("----------------------"+filedownload);  
            response.setContentType("applicaiton/x-download");  
            response.addHeader("Content-Disposition", "attachment;filename="+filedisplay);  
    
            InputStream is = null;  
            OutputStream os = null;  
            BufferedInputStream bis = null;  
            BufferedOutputStream bos = null;  
    
            is = new FileInputStream(new File(filedownload));  
            bis = new BufferedInputStream(is);  
            os = response.getOutputStream();  
            bos = new BufferedOutputStream(os);  
    
            byte[] b = new byte[1024];  
            int len = 0;  
            while((len = bis.read(b)) != -1){  
                bos.write(b,0,len);  
            }  
    
            bis.close();  
            is.close();  
            bos.close();  
            os.close();   
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容