Java使用Apache.POI中HSSFWorkbook導出到Excel的實現(xiàn)方法
使用Apache.POI中HSSFWorkbook導出到Excel,具體內(nèi)容如下所示:
1.引入Poi依賴(3.12)
依賴如下:
<dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.12</version> </dependency>
2.創(chuàng)建實體類(User.java)
package com.kd.nm.entity.pojo; /** * 實體類(User) * * author 小辰哥哥 */ public class User { // 用戶編號 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方法進行封裝 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) { // 聲明一個工作薄 HSSFWorkbook workbook = new HSSFWorkbook(); // 生成一個表格 HSSFSheet sheet = workbook.createSheet(); // 生成標題行樣式 HSSFCellStyle headStyle = creatStyle(workbook, (short) 14); // 生成表格內(nèi)容樣式 HSSFCellStyle bodyStyle = creatStyle(workbook, (short) 10); // 標題元素 List<String> keys = new ArrayList<String>(heads.keySet()); // 像素單位 short px = 1000; // 設置列寬 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); // 標題 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 { // 獲取當前屬性 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 { // 獲取當前屬性 PropertyDescriptor pd = new PropertyDescriptor(key, obj.getClass()); // 獲取set方法 Method writeMd = pd.getWriteMethod(); writeMd.invoke(obj, value); } catch (Exception e) { logger.error("設置內(nèi)容失敗!"); e.printStackTrace(); } } }
4.后端控制器代碼
@RequestMapping(value = "/exportExcel",method = RequestMethod.GET,produces = "application/json") public void exportExcel(HttpServletResponse httpServletResponse) throws IOException { // 表頭內(nèi)容(可在前端設置,通過參數(shù)傳遞進來) Key是實體類的屬性值,value是表頭的lable Map<String,String> head = new HashMap<>(); head.put("userNo","用戶編號"); head.put("userName","用戶名稱"); head.put("age","年齡"); // 表格數(shù)據(jù)內(nèi)容,模擬數(shù)據(jù)庫查詢出來的數(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 = "導出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導出到Excel的實現(xiàn)方法的文章就介紹到這了,更多相關(guān)Apache.POI中HSSFWorkbook導出到Excel內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
利用win10自帶虛擬機hyper-v安裝centos7方法詳解
利用VMware安裝CentOS系統(tǒng)相信大家都比較熟悉了,今天為大家介紹一下利用Win10自帶的虛擬機hyper-v來安裝CentOS,hyper-v與VMware的區(qū)別還是挺大的2018-10-10linux報錯INFO:task?xxxxxx:634?blocked?for?more?than?120?
文章描述了一個Linux最小系統(tǒng)運行時出現(xiàn)的“hung_task_timeout_secs”錯誤,并探討了三種解決方案:縮小文件系統(tǒng)緩存大小、修改IO調(diào)度策略和取消120秒時間限制,通過測試,發(fā)現(xiàn)縮減文件系統(tǒng)緩存大小和取消120秒時間限制都可以解決問題2025-01-01