2021-05-12 14:32:11
springboot實現根據Excel模板匯出表格
Spring Boot是由Pivotal團隊提供的全新框架,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程。該框架使用了特定的方式來進行設定,從而使開發人員不再需要定義樣板化的設定。
1
第一步:建立springboot專案。1、使用intellij IDEA建立springboot專案1.1、 開啟建立頁面 選擇File-new-project..1.2、選擇建立的專案為spring initializr 進入springboot專案建立步驟(也可以選擇型別java,建立一個普通java專案)1.3、輸入專案名字,選擇依賴web(根據專案需求選擇,此次需要),選擇存放目錄-完成(Finish)2、使用eclipse建立springboot專案2
第二步:pom檔案引入Excel表格的POI匯出匯入依賴包。
<!--引入poi -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.0.0</version>
</dependency>
1
第一步:製作匯出模板。
1、wps2019新建一個表格
2、製作需要的模板
2
第二步:編寫實現類。
1、編寫控制器,程式碼如下所示
import java.io.FileInputStream;
import java.io.OutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class Excel(敏感詞)ExportController {
@GetMapping("/exportExcel")
public void exportExcel(HttpServletRequest request, HttpServletResponse response) {
try {
HSSFWorkbook wb = new HSSFWorkbook(new FileInputStream("E:/file/Excel匯出模板.xls"));
// 根據頁面index 獲取sheet頁
HSSFSheet sheet = wb.getSheet("Sheet1");
for (int i = 0; i < 100; i++) {
// 建立HSSFRow物件
HSSFRow row = sheet.createRow(i + 1);
// 建立HSSFCell物件 設定單元格的值
row.createCell(0).setCellValue("張三" + i);
row.createCell(1).setCellValue(i);
row.createCell(2).setCellValue("男" + i);
row.createCell(3).setCellValue("科研" + i);
}
// 輸出Excel檔案
OutputStream output = response.getOutputStream();
response.reset();
// 設定檔案頭
response.setHeader("Content-Disposition",
"attchement;filename=" + new String("人員資訊.xls".getBytes("gb2312"), "ISO8859-1"));
response.setContentType("application/msexcel");
wb.write(output);
wb.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
3
第三步:測試。
1、開啟:http://localhost:8080/exportExcel
2、檢視匯出結果,結果如下所示,測試成功。
相關文章