Java使用Apache.POI中HSSFWorkbook導(dǎo)出到Excel的實(shí)現(xiàn)方法
使用Apache.POI中HSSFWorkbook導(dǎo)出到Excel,具體內(nèi)容如下所示:
1.引入Poi依賴(3.12)
依賴如下:
<dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.12</version> </dependency>
2.創(chuàng)建實(shí)體類(User.java)
package com.kd.nm.entity.pojo; /** * 實(shí)體類(User) * * author 小辰哥哥 */ public class User { // 用戶編號(hào) private String userNo; // 用戶名稱 private String userName; // 年齡 private String age; // 無參構(gòu)造 public User() { } // 有參構(gòu)造 public User(String userNo, String userName, String age) { this.userNo = userNo; this.userName = userName; this.age = age; } // get與set方法進(jìn)行封裝 public String getUserNo() { return userNo; } public void setUserNo(String userNo) { this.userNo = userNo; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getAge() { return age; } public void setAge(String age) { this.age = age; } // 重新toString方法 @Override public String toString() { return "User{" + "userNo='" + userNo + '\'' + ", userName='" + userName + '\'' + ", age='" + age + '\'' + '}'; } }
3.Excel相關(guān)工具類(ExcelUtil、ReflectUtil)
package com.kd.nm.util; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.apache.poi.hssf.usermodel.*; /** * Description : Excel相關(guān)工具類 * * @author: 小辰哥哥 * */ public class ExcelUtil { /** * 生成excel表格 * @param heads 表頭內(nèi)容 * @param data 數(shù)據(jù)內(nèi)容 * @return */ public static HSSFWorkbook creatExcel(Map<String, String> heads, List data) { // 聲明一個(gè)工作薄 HSSFWorkbook workbook = new HSSFWorkbook(); // 生成一個(gè)表格 HSSFSheet sheet = workbook.createSheet(); // 生成標(biāo)題行樣式 HSSFCellStyle headStyle = creatStyle(workbook, (short) 14); // 生成表格內(nèi)容樣式 HSSFCellStyle bodyStyle = creatStyle(workbook, (short) 10); // 標(biāo)題元素 List<String> keys = new ArrayList<String>(heads.keySet()); // 像素單位 short px = 1000; // 設(shè)置列寬 for (int columnIndex = 0; columnIndex < keys.size(); columnIndex++) { sheet.setColumnWidth(columnIndex, 6 * px); } // 生成表格 for (int rowNum = 0; rowNum <= data.size(); rowNum++) { // 創(chuàng)建行 HSSFRow row = sheet.createRow(rowNum); for (int cellNum = 0; cellNum < keys.size(); cellNum++) { // 創(chuàng)建列 HSSFCell cell = row.createCell(cellNum); // 標(biāo)題 if (rowNum == 0) { cell.setCellStyle(headStyle); cell.setCellValue(heads.get(keys.get(cellNum))); } else { // 內(nèi)容 cell.setCellStyle(bodyStyle); // 通過反射獲取 cell.setCellValue(ReflectUtil.getValue(keys.get(cellNum), data.get(rowNum - 1))); } } } return workbook; } /** * 生成樣式 * @param workbook * @param size * @return */ public static HSSFCellStyle creatStyle(HSSFWorkbook workbook, short size) { HSSFCellStyle style = workbook.createCellStyle(); style.setAlignment((HSSFCellStyle.ALIGN_CENTER)); style.setVerticalAlignment((HSSFCellStyle.VERTICAL_CENTER)); HSSFFont font = workbook.createFont(); font.setFontHeightInPoints(size); font.setFontName("微軟雅黑"); style.setFont(font); style.setBorderBottom(HSSFCellStyle.BORDER_THIN); style.setBorderTop(HSSFCellStyle.BORDER_THIN); style.setBorderRight(HSSFCellStyle.BORDER_THIN); style.setBorderLeft(HSSFCellStyle.BORDER_THIN); return style; } }
package com.kd.nm.util; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.util.ReflectionUtils; import java.beans.PropertyDescriptor; import java.lang.reflect.Method; /** * 反射工具包 * * @author: 小辰哥哥 */ public class ReflectUtil { private static final Logger logger = LoggerFactory.getLogger(ReflectUtil.class); public static String getValue(String key, Object obj) { String value = ""; try { // 獲取當(dāng)前屬性 PropertyDescriptor pd = new PropertyDescriptor(key, obj.getClass()); // 獲取get方法 Method getMd = pd.getReadMethod(); value = getMd.invoke(obj).toString(); } catch (Exception e) { logger.error("獲取內(nèi)容失??!"); e.printStackTrace(); } return value; } public static void setValue(String key, String value, Object obj) { try { // 獲取當(dāng)前屬性 PropertyDescriptor pd = new PropertyDescriptor(key, obj.getClass()); // 獲取set方法 Method writeMd = pd.getWriteMethod(); writeMd.invoke(obj, value); } catch (Exception e) { logger.error("設(shè)置內(nèi)容失敗!"); e.printStackTrace(); } } }
4.后端控制器代碼
@RequestMapping(value = "/exportExcel",method = RequestMethod.GET,produces = "application/json") public void exportExcel(HttpServletResponse httpServletResponse) throws IOException { // 表頭內(nèi)容(可在前端設(shè)置,通過參數(shù)傳遞進(jìn)來) Key是實(shí)體類的屬性值,value是表頭的lable Map<String,String> head = new HashMap<>(); head.put("userNo","用戶編號(hào)"); head.put("userName","用戶名稱"); head.put("age","年齡"); // 表格數(shù)據(jù)內(nèi)容,模擬數(shù)據(jù)庫(kù)查詢出來的數(shù)據(jù) List<User> data = new ArrayList<>(); data.add(new User("1","小辰哥哥","18")); data.add(new User("2","小豬妹妹","18")); data.add(new User("3","大豬哥哥","18")); // 生成工作薄 HSSFWorkbook hssfWorkbook = ExcelUtil.creatExcel(head, data); // 定義文件名 String fileName = "導(dǎo)出Excel表格"; httpServletResponse.setHeader("Cache-Control", "max-age=0"); httpServletResponse.setContentType("application/vnd.ms-excel"); httpServletResponse.addHeader("Content-disposition", "attachment;filename=" + new String(fileName.getBytes("gb2312"), "ISO-8859-1") + ".xls"); OutputStream outputStream = httpServletResponse.getOutputStream(); hssfWorkbook.write(outputStream); outputStream.flush(); outputStream.close(); }
5.訪問映射地址
接口訪問:
http://localhost:9090/FaultTreatment/api/standard/exportExcel
到此這篇關(guān)于Java使用Apache.POI中HSSFWorkbook導(dǎo)出到Excel的實(shí)現(xiàn)方法的文章就介紹到這了,更多相關(guān)Apache.POI中HSSFWorkbook導(dǎo)出到Excel內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
linux中數(shù)據(jù)庫(kù)的定時(shí)備份
這篇文章主要介紹了linux中數(shù)據(jù)庫(kù)的定時(shí)備份的相關(guān)資料,需要的朋友可以參考下2023-05-05利用win10自帶虛擬機(jī)hyper-v安裝centos7方法詳解
利用VMware安裝CentOS系統(tǒng)相信大家都比較熟悉了,今天為大家介紹一下利用Win10自帶的虛擬機(jī)hyper-v來安裝CentOS,hyper-v與VMware的區(qū)別還是挺大的2018-10-10apache虛擬主機(jī)配置的三種方式(小結(jié))
本文主要介紹了apache虛擬主機(jī)配置的三種方式,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2022-07-07linux報(bào)錯(cuò)INFO:task?xxxxxx:634?blocked?for?more?than?120?
文章描述了一個(gè)Linux最小系統(tǒng)運(yùn)行時(shí)出現(xiàn)的“hung_task_timeout_secs”錯(cuò)誤,并探討了三種解決方案:縮小文件系統(tǒng)緩存大小、修改IO調(diào)度策略和取消120秒時(shí)間限制,通過測(cè)試,發(fā)現(xiàn)縮減文件系統(tǒng)緩存大小和取消120秒時(shí)間限制都可以解決問題2025-01-01linux如何為一臺(tái)實(shí)例分配一個(gè)公網(wǎng)IP地址
在本篇文章中我們給大家分享了一篇關(guān)于linux如何為一臺(tái)實(shí)例分配一個(gè)公網(wǎng)IP地址的知識(shí)內(nèi)容,有需要的朋友們學(xué)習(xí)下。2018-10-10使用Apache ab進(jìn)行http性能測(cè)試
這篇文章主要為大家詳細(xì)介紹了使用Apache ab進(jìn)行http性能測(cè)試,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-12-12