日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > vue >内容正文

vue

springboot+vue+element-ui下载excel模板(静态文件)

發布時間:2024/3/13 vue 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 springboot+vue+element-ui下载excel模板(静态文件) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

前端:?

html:<div style="margin-top: 20px"><el-button @click="downloadDemo" size="small">下載模板</el-button></div>js:downloadDemo () {let url = Config.context + '/userManager/downloadExcel'this.common.exportData(url, this.queryForm, '數據模板_' + this.common.getTime())} exportData (url, data, fileName) {axios({method: 'POST',url: url,data: data,responseType: 'blob'}).then(response => {if (!response) {return}const blob = new Blob([response.data])if (window.navigator && window.navigator.msSaveOrOpenBlob) {navigator.msSaveBlob(blob, fileName)} else {let u = window.URL.createObjectURL(response.data)let aLink = document.createElement('a')aLink.style.display = 'none'aLink.href = uaLink.setAttribute('download', fileName + '.xlsx')document.body.appendChild(aLink)aLink.click()document.body.removeChild(aLink)window.URL.revokeObjectURL(u)}}).catch(error => {throw error})}

?

后端:

controller層:

@RequestMapping("/downloadExcel")public ResponseEntity<byte[]> download2() throws IOException {File file = excelModelService.buildXlsById();return FileUtils.buildResponseEntity(file);}

service層:

import org.springframework.stereotype.Service; import org.springframework.util.ResourceUtils;import java.io.File; import java.io.FileNotFoundException;@Service public class ExcelModelService {public File buildXlsById(){//do something to find this fileFile file=null;try {file = ResourceUtils.getFile("classpath:templates/model.xlsx");} catch (FileNotFoundException e) {e.printStackTrace();}return file;} }

這里寫的是靜態文件的存放路徑,注意不能中文名不然識別不了

文件下載工具類:

public static ResponseEntity<byte[]> buildResponseEntity(File file) throws IOException {byte[] body = null;//獲取文件InputStream is = new FileInputStream(file);body = new byte[is.available()];is.read(body);HttpHeaders headers = new HttpHeaders();//設置文件類型headers.add("Content-Disposition", "attchement;filename=" + file.getName());//設置Http狀態碼HttpStatus statusCode = HttpStatus.OK;//返回數據ResponseEntity<byte[]> entity = new ResponseEntity<byte[]>(body, headers, statusCode);return entity;}

后續補充:

? 以上方式實現在開發環境沒有任何問題,但是在生產環境會出現無法下載后臺報錯的情況,原因在于用流的方式讀取文件,打成jar包之后,下載的文件會被損壞?,后來網上說配置pom里面文件路徑等等試了沒用,直接用了POI的導出

修改后controller:

@RequestMapping(value="/downloadExcel")public ResponseEntity<Resource> excel2007Export(HttpServletResponse response, HttpServletRequest request) {try {ClassPathResource cpr = new ClassPathResource("/templates/"+"model.xlsx");InputStream is = cpr.getInputStream();Workbook workbook = new XSSFWorkbook(is);String fileName = "model.xlsx";downLoadExcel(fileName, response, workbook);} catch (FileNotFoundException e) {// TODO Auto-generated catch blocke.printStackTrace();} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();}return new ResponseEntity<Resource>(HttpStatus.OK);}

文件工具類downLoadExcel:

public static void downLoadExcel(String fileName, HttpServletResponse response, Workbook workbook) {try {response.setCharacterEncoding("UTF-8");response.setHeader("content-Type", "application/vnd.ms-excel");response.setHeader("Content-Disposition","attachment;filename=\"" + URLEncoder.encode(fileName, "UTF-8") + "\"");workbook.write(response.getOutputStream());} catch (IOException e) {e.printStackTrace();}}

?

總結

以上是生活随笔為你收集整理的springboot+vue+element-ui下载excel模板(静态文件)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。