人妖在线一区,国产日韩欧美一区二区综合在线,国产啪精品视频网站免费,欧美内射深插日本少妇

新聞動(dòng)態(tài)

Java使用Apache.POI中HSSFWorkbook導(dǎo)出到Excel的實(shí)現(xiàn)方法

發(fā)布日期:2021-12-22 14:03 | 文章來(lái)源:源碼之家

使用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;
 // 無(wú)參構(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);
     // 通過(guò)反射獲取
     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è)置,通過(guò)參數(shù)傳遞進(jìn)來(lái)) 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ù)查詢出來(lái)的數(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.訪問(wèn)映射地址

接口訪問(wèn):

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)文章希望大家以后多多支持本站!

版權(quán)聲明:本站文章來(lái)源標(biāo)注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請(qǐng)保持原文完整并注明來(lái)源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非www.sddonglingsh.com所屬的服務(wù)器上建立鏡像,否則將依法追究法律責(zé)任。本站部分內(nèi)容來(lái)源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來(lái),僅供學(xué)習(xí)參考,不代表本站立場(chǎng),如有內(nèi)容涉嫌侵權(quán),請(qǐng)聯(lián)系alex-e#qq.com處理。

相關(guān)文章

實(shí)時(shí)開通

自選配置、實(shí)時(shí)開通

免備案

全球線路精選!

全天候客戶服務(wù)

7x24全年不間斷在線

專屬顧問(wèn)服務(wù)

1對(duì)1客戶咨詢顧問(wèn)

在線
客服

在線客服:7*24小時(shí)在線

客服
熱線

400-630-3752
7*24小時(shí)客服服務(wù)熱線

關(guān)注
微信

關(guān)注官方微信
頂部