頁面點擊按鈕下載文件

實現要求:瀏覽器頁面點擊,文件下載

前臺實現

    function down(data){
        var content = data.modelContent;
        window.location.href = getRootPath_web() +"auditData/download?content="+content;
    }

後臺實現:

    @RequestMapping("/download")
    public void download(String content, HttpServletResponse response) {
        try {
            // 要下載的文件的路徑。
            File file = new File(content);
            // 取得文件名。
            String filename = file.getName();

            // 以流的形式下載文件。
            InputStream fis = new BufferedInputStream(new FileInputStream(content));
            byte[] buffer = new byte[fis.available()];
            fis.read(buffer);
            fis.close();
            // 清空response
            response.reset();
            // 設置response的Header
            response.addHeader("Content-Disposition", "attachment;filename=" + new String(filename.getBytes()));
            response.addHeader("Content-Length", "" + file.length());
            OutputStream toClient = new BufferedOutputStream(response.getOutputStream());
            response.setContentType("application/octet-stream");
            response.setCharacterEncoding("utf-8");
            toClient.write(buffer);
            toClient.flush();
            toClient.close();
        } catch (IOException ex) {
            ex.printStackTrace();
        }

    }

 

發佈了30 篇原創文章 · 獲贊 21 · 訪問量 1萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章