亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Springmvc下載文件

發布時間:2021-04-16 17:23:50 來源:億速云 閱讀:144 作者:Leah 欄目:編程語言

本篇文章為大家展示了如何使用Springmvc下載文件,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

第一種可以直接向response的輸出流中寫入對應的文件流

第二種可以使用 ResponseEntity<byte[]>來向前端返回文件

一、使用response

@RestController
@RequestMapping("/download")
public class DownloadController {

  @RequestMapping("/d1")
  public ResultVo<String> downloadFile(HttpServletResponse response){

    String fileName="test.png";
    try {
      //獲取頁面輸出流
      ServletOutputStream outputStream = response.getOutputStream();
      //讀取文件
      byte[] bytes = FileUtils.readFileToByteArray(new File("D:\\my-study\\test2.png"));
      //向輸出流寫文件
      //寫之前設置響應流以附件的形式打開返回值,這樣可以保證前邊打開文件出錯時異常可以返回給前臺
      response.setHeader("Content-Disposition","attachment;filename="+fileName);
      outputStream.write(bytes);
      outputStream.flush();
      outputStream.close();
      return ResultVoUtil.success("success");
    } catch (IOException e) {
      return ResultVoUtil.error(e);
    }

  }
}

推薦使用這種方式,這種方式可以以json形式給前臺返回提示信息。

二、使用ResponseEntity

@Controller
@RequestMapping("/download2")
public class DownloadController2 {

  private final static Logger logger= LoggerFactory.getLogger(CategoryDataController.class);


  @GetMapping("/d2")
  public ResponseEntity<byte[]> download2(){
    //獲取文件對象
    try {
      byte[] bytes = FileUtils.readFileToByteArray(new File("D:\\my-study\\bill-admin\\test2.png"));
      HttpHeaders headers=new HttpHeaders();
      headers.set("Content-Disposition","attachment;filename=test2.png");
      ResponseEntity<byte[]> entity=new ResponseEntity<>(bytes,headers,HttpStatus.OK);
      return entity;
    } catch (IOException e) {
      logger.error("下載出錯:",e);
      return null;
    }
  }
}

上述內容就是如何使用Springmvc下載文件,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宕昌县| 诏安县| 浏阳市| 安国市| 丰台区| 石楼县| 靖西县| 高阳县| 甘洛县| 灵石县| 香格里拉县| 汝阳县| 旬阳县| 东城区| 万山特区| 襄垣县| 永春县| 敦煌市| 红桥区| 泗水县| 洛扎县| 开阳县| 石棉县| 高要市| 海口市| 柘荣县| 通许县| 屯留县| 芷江| 平舆县| 四子王旗| 大石桥市| 金秀| 通江县| 普陀区| 涿鹿县| 托克逊县| 苍溪县| 黄骅市| 宾阳县| 望都县|