<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
相關文章:
相信在大部分的web專案中都會有匯出匯入Excel的需求,但是在我們日常的工作中,需求往往沒這麼簡單,可能需要將資料按型別分類匯出或者資料量過大,需要分多張表匯出等等。遇到類似的需求該怎麼辦呢,別慌,往下看。
pom檔案中,新增以下依賴
<!--Excel工具--> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>5.2.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>5.2.2</version> <scope>compile</scope> </dependency>
package com.***.excel; import org.apache.poi.hssf.usermodel.*; import org.apache.poi.ss.usermodel.HorizontalAlignment; import org.apache.poi.ss.usermodel.VerticalAlignment; import org.springframework.http.MediaType; import javax.servlet.http.HttpServletResponse; import java.net.URLEncoder; import java.util.List; /** * @description: excel匯出多個sheet工具類 * @author: *** * @date: 2022/9/15 */ public class ExportSheetUtil { /** * 拆解並匯出多重Excel */ public static void exportManySheetExcel(String fileName, List<ExcelSheet> mysheets, HttpServletResponse response) { //建立工作薄 HSSFWorkbook wb = new HSSFWorkbook(); //表頭樣式 HSSFCellStyle style = wb.createCellStyle(); // 垂直 style.setVerticalAlignment(VerticalAlignment.CENTER); // 水平 style.setAlignment(HorizontalAlignment.CENTER); //字型樣式 HSSFFont fontStyle = wb.createFont(); fontStyle.setFontName("微軟雅黑"); fontStyle.setFontHeightInPoints((short) 12); style.setFont(fontStyle); for (ExcelSheet excel : mysheets) { //新建一個sheet //獲取該sheet名稱 HSSFSheet sheet = wb.createSheet(excel.getFileName()); //獲取sheet的標題名 String[] handers = excel.getHanders(); //第一個sheet的第一行為標題 HSSFRow rowFirst = sheet.createRow(0); //寫標題 for (int i = 0; i < handers.length; i++) { //獲取第一行的每個單元格 HSSFCell cell = rowFirst.createCell(i); //往單元格里寫資料 cell.setCellValue(handers[i]); //加樣式 cell.setCellStyle(style); //設定每列的列寬 sheet.setColumnWidth(i, 4000); } //寫資料集 List<String[]> dataset = excel.getDataset(); for (int i = 0; i < dataset.size(); i++) { //獲取該物件 String[] data = dataset.get(i); //建立資料行 HSSFRow row = sheet.createRow(i + 1); for (int j = 0; j < data.length; j++) { //設定對應單元格的值 row.createCell(j).setCellValue(data[j]); } } } // 下載檔案谷歌檔名會亂碼,用IE try { response.setContentType(MediaType.APPLICATION_OCTET_STREAM_VALUE); response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(fileName + ".xlsx", "utf-8")); response.setHeader("Cache-Control", "No-cache"); response.flushBuffer(); wb.write(response.getOutputStream()); wb.close(); } catch (Exception e) { e.printStackTrace(); } } }
package com.***.excel; import lombok.Data; import java.util.List; /** * @description: 匯出多個sheet表 * @author: *** * @date: 2022/9/15 */ @Data public class ExcelSheet { /*** sheet的名稱*/ private String fileName; /*** sheet裡的標題*/ private String[] handers; /*** sheet裡的資料集*/ private List<String[]> dataset; public ExcelSheet(String fileName, String[] handers, List<String[]> dataset) { this.fileName = fileName; this.handers = handers; this.dataset = dataset; } }
/*** 匯出開票及運單資訊*/ ExportInvoiceAndBillVo exportInvoiceAndBillInfo(InvoiceReviewListDto dto);
實現類裡的程式碼,需要各位根據自己的業務場景進行改動,無非就是將需要匯出的資料先查出來,帶入模板中,呼叫工具類的方法匯出。
package com.***.vo.invoicereview; import lombok.Data; import java.io.Serializable; import java.util.List; /** * @description: 匯出開票和運單資訊Vo * @author: *** * @date: 2022/9/19 */ @Data public class ExportInvoiceAndBillVo implements Serializable { /*** 開票資訊*/ private List<String[]> invoiceList; /*** 運單資訊*/ private List<String[]> billList; } @Override public ExportInvoiceAndBillVo exportInvoiceAndBillInfo(InvoiceReviewListDto dto) { ExportInvoiceAndBillVo invoiceAndBill = new ExportInvoiceAndBillVo(); // 查詢需要匯出的開票資訊 PageInfo<InvoiceReviewListVo> pageInfo = queryInvoiceReviewList(dto); List<InvoiceReviewListVo> invoiceList = pageInfo.getList(); if (invoiceList.size() > 10000) { throw new ServiceException("開票資料過多,請分批次匯出"); } // 查詢需要匯出的車運運單資訊 List<Long> invoiceIdList = invoiceList.stream().map(InvoiceReviewListVo::getInvoiceId).collect(Collectors.toList()); List<ExportBillVo> billList = getBillInfo(invoiceIdList); if (billList.size() > 10000) { throw new ServiceException("運單資料過多,請分批次匯出"); } // 將表1 表2的資料 放入定義的物件Vo中 invoiceAndBill.setInvoiceList(getInvoiceDataList(invoiceList)); invoiceAndBill.setBillList(getBillDataList(billList)); return invoiceAndBill; }
controller層的程式碼需要注意的是:
1.因為匯出Excel一般都是通過瀏覽器進行下載的,所以入參中需要加入HttpServletResponse
2.呼叫封裝的工具類ExportSheetUtil中的exportManySheetExcel方法就可以了
3.表頭和表名需要各位根據自身的業務場景修改哈
/** * 匯出開票和運單資訊 */ @Log @PostMapping("/exportInvoiceAndBillInfo") public void exportInvoiceAndBillInfo(@RequestBody InvoiceReviewListDto dto, HttpServletResponse response) { ExportInvoiceAndBillVo invoiceAndBillVo = invoiceFacadeService.exportInvoiceAndBillInfo(dto); //設定sheet的表頭與表名 String[] invoiceSheetHead = {"開票編號", "票號", "公司名稱", "收票方名稱", "結算型別", "納稅識別碼", "收票聯絡人", "聯絡人電話", "運單總金額(元)", "含稅總金額(元)", "開票狀態", "提交開票時間", "運營稽核時間", "運營稽核人", "財務稽核時間", "財務稽核人", "開票完成時間", "沖銷操作人", "沖銷時間"}; String[] billSheetHead = {"開票編號", "運單號", "發貨地", "收貨地", "司機", "司機電話", "貨物名稱", "貨物數量", "單位", "貨物重量(噸)", "運單狀態", "運單金額(元)", "含稅金額(元)"}; ExcelSheet invoiceExcel = new ExcelSheet("開票資訊", invoiceSheetHead, invoiceAndBillVo.getInvoiceList()); ExcelSheet billExcel = new ExcelSheet("運單資訊", billSheetHead, invoiceAndBillVo.getBillList()); List<ExcelSheet> mysheet = new ArrayList<>(); mysheet.add(invoiceExcel); mysheet.add(billExcel); ExportSheetUtil.exportManySheetExcel("開票及運單資訊", mysheet, response); }
最終匯出的Excel檔案:
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對it145.com的支援。如果你想了解更多相關內容請檢視下面相關連結
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45