vue+java 文件下载

vue+Java 文件下载

背景

算是第一次,前后端自己琢磨文件下载了。直接上代码吧。

前端代码








后台controller

    /**
     * 

Description: 下载

* * @param path 路径 * @param response */ @GetMapping("/api/documents/download") public void download(String path, HttpServletResponse response) { try { // path: 欲下载的文件的路径 File file = new File(path); // 获取文件名 - 设置字符集 String downloadFileName = new String(file.getName().getBytes(StandardCharsets.UTF_8), "iso-8859-1"); // 以流的形式下载文件 InputStream fis; fis = new BufferedInputStream(new FileInputStream(path)); byte[] buffer = new byte[fis.available()]; fis.read(buffer); fis.close(); // 清空response response.reset(); // 设置response的Header response.addHeader("Content-Disposition", "attachment;filename=" + downloadFileName); response.addHeader("Content-Length", "" + file.length()); OutputStream toClient = new BufferedOutputStream(response.getOutputStream()); response.setContentType("application/octet-stream"); toClient.write(buffer); toClient.flush(); toClient.close(); } catch (IOException ex) { ex.printStackTrace(); } }

页面效果

vue+java 文件下载_第1张图片

你可能感兴趣的:(Java,前端)