新聞中心
本篇文章為大家展示了如何使用Springmvc下載文件,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都做網(wǎng)站、成都網(wǎng)站制作、馬邊彝族網(wǎng)絡(luò)推廣、小程序制作、馬邊彝族網(wǎng)絡(luò)營銷、馬邊彝族企業(yè)策劃、馬邊彝族品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)公司為所有大學生創(chuàng)業(yè)者提供馬邊彝族建站搭建服務(wù),24小時服務(wù)熱線:18982081108,官方網(wǎng)址:www.cdcxhl.com
第一種可以直接向response的輸出流中寫入對應(yīng)的文件流
第二種可以使用 ResponseEntity
一、使用response
@RestController @RequestMapping("/download") public class DownloadController { @RequestMapping("/d1") public ResultVodownloadFile(HttpServletResponse response){ String fileName="test.png"; try { //獲取頁面輸出流 ServletOutputStream outputStream = response.getOutputStream(); //讀取文件 byte[] bytes = FileUtils.readFileToByteArray(new File("D:\\my-study\\test2.png")); //向輸出流寫文件 //寫之前設(shè)置響應(yīng)流以附件的形式打開返回值,這樣可以保證前邊打開文件出錯時異??梢苑祷亟o前臺 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 ResponseEntitydownload2(){ //獲取文件對象 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 entity=new ResponseEntity<>(bytes,headers,HttpStatus.OK); return entity; } catch (IOException e) { logger.error("下載出錯:",e); return null; } } }
上述內(nèi)容就是如何使用Springmvc下載文件,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
分享標題:如何使用Springmvc下載文件
轉(zhuǎn)載來源:http://www.dlmjj.cn/article/pcpedg.html