(這裡寫自定義目錄标題)SpringBoot項目POI實作Excel表格的導入導出
POI的版本為4.0.0,網上查的資料大多都是POI3.12版本的,查了好多4.0.0版本的單元格樣式,整理了一下。代碼如下
pom.xml注入依賴
<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>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-scratchpad</artifactId>
<version>4.0.0</version>
</dependency>
控制層導出代碼
@RequestMapping(value = “/export”)
@ResponseBody
public void export(HttpServletResponse response) throws IOException {
List user =UserService.selectUser();
HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = wb.createSheet("系統價格導入");
HSSFCellStyle style=wb.createCellStyle();
HSSFFont font=wb.createFont();
HSSFRow row = null;
row = sheet.createRow(0);//建立第一個單元格
row.setHeight((short) (26.25 * 20));
Cell cell=row.createCell(0);
cell.setCellValue("價格維護");//為第一行單元格設值
//為第一個單元格設定樣式
style.setAlignment(HorizontalAlignment.CENTER); //左右居中
style.setVerticalAlignment(VerticalAlignment.CENTER);//上下居中
font.setFontName("黑體");
font.setFontHeightInPoints((short)18);//設定字型大小
font.setBold(true);//設定字型加粗
style.setFont(font);
cell.setCellStyle(style);
/*為标題設計空間
* firstRow從第1行開始
* lastRow從第0行結束
* 從第1個單元格開始
* 從第3個單元格結束
*/
CellRangeAddress rowRegion = new CellRangeAddress(0, 0, 0,12);
sheet.addMergedRegion(rowRegion);
/*
* 動态擷取資料庫列 sql語句 select COLUMN_NAME from INFORMATION_SCHEMA.Columns where table_name='user' and table_schema='test'
* 第一個table_name 表名字
* 第二個table_name 資料庫名稱
*/
row = sheet.createRow(1);
//設定背景色
//建立單元格樣式
HSSFCellStyle cellstyle=wb.createCellStyle();
cellstyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cellstyle.setFillBackgroundColor(IndexedColors.GREEN.getIndex());//設定圖案背景顔色
cellstyle.setAlignment(HorizontalAlignment.CENTER); //左右居中
cellstyle.setVerticalAlignment(VerticalAlignment.CENTER);//上下居中
cellstyle.setWrapText(true);//設定自動換行
row.setHeight((short) (22.50 * 20));//設定行高
row.setRowStyle(cellstyle);
row.createCell(0).setCellValue("序号");//為第一個單元格設值
row.createCell(1).setCellValue("裝置");
row.createCell(2).setCellValue("價格分類");
row.createCell(3).setCellValue("名額名稱");
row.createCell(4).setCellValue("日期");
row.createCell(5).setCellValue("計算價格");
for (int i = 0; i < user.size(); i++) {
row = sheet.createRow(i + 2);
User user = User.get(i);
row.createCell(1).setCellValue(user.getDevice());
row.createCell(2).setCellValue(user.getPricetype());
row.createCell(3).setCellValue(user.getIndexname());
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String udate=sdf.format(user.getUdate());
row.createCell(4).setCellValue(udate);
row.createCell(5).setCellValue(user.getSumprice());
}
sheet.setDefaultRowHeight((short) (16.5 * 20));
//列寬自适應
for (int i = 0; i <= 13; i++) {
sheet.autoSizeColumn(i);
sheet.setColumnWidth(i,sheet.getColumnWidth(i)*17/10);
}
response.setContentType("application/vnd.ms-excel;charset=utf-8");
OutputStream os = response.getOutputStream();
response.setHeader("Content-disposition", "attachment;filename=user.xls");//預設Excel名稱
wb.write(os);
os.flush();
os.close();
}
前端代碼
- 使用者資訊
-
<li>使用者資訊</li> <li> <a class="btn btn-default" href="/User/add" target="_blank" rel="external nofollow" ><span class="fa fa-check-square"></span>  新增</a></li> <li> <input type="button" name="Submit2" value="導入" class="btn" onclick="window.open('/User/daoruview','newwindow2', 'height=680, width=1000, top=120, left=400,toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=yes, status=yes')" /></li> <li> <a href="/User/export" target="_blank" rel="external nofollow" ><button type="button" class="btn btn-primary">導出</button></a></li> </ul> <ul class="top-toolbar"></ul> </div>
其他的基本網上查資料就可以查得到