Java使用poi做加自定義注解實(shí)現(xiàn)對象與Excel相互轉(zhuǎn)換
引入依賴
maven
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.17</version>
</dependency>
Gradle
implementation group: 'org.apache.poi', name: 'poi', version: '3.17'
代碼展示
1、自定義注解類
@Retention(value = RetentionPolicy.RUNTIME)
@Target(value = ElementType.FIELD)
public @interface Excel {
String name();//列的名字
int width() default 6000;//列的寬度
int index() default -1;//決定生成的順序
boolean isMust() default true; // 是否為必須值,默認(rèn)是必須的
}
2、Java的Excel對象,只展現(xiàn)了field,get與set方法就忽略了
public class GoodsExcelModel {
@Excel(name = "ID_禁止改動", index = 0, width = 0)
private Long picId;//picId
@Excel(name = "產(chǎn)品ID_禁止改動", index = 1, width = 0)
private Long productId;
@Excel(name = "型號", index = 3)
private String productName;//產(chǎn)品型號
@Excel(name = "系列", index = 2)
private String seriesName;//系列名字
@Excel(name = "庫存", index = 5)
private Long quantity;
@Excel(name = "屬性值", index = 4)
private String propValue;
@Excel(name = "價格", index = 6)
private Double price;
@Excel(name = "商品編碼", index = 7, isMust = false)
private String outerId;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long dbId; // 數(shù)據(jù)庫自增長id
private Date createTime; // 記錄創(chuàng)建時間
}
3、Excel表格與對象轉(zhuǎn)換的工具類,使用時指定泛型參數(shù)和泛型的class即可
public class ExcelUtil {
private static final String GET = "get";
private static final String SET = "set";
private static Logger logger = LoggerFactory.getLogger(ExcelUtil.class);
/**
* 將對象轉(zhuǎn)換成Excel
*
* @param objList 需要轉(zhuǎn)換的對象
* @return 返回是poi中的對象
*/
public static HSSFWorkbook toExcel(List objList) {
if (CollectionUtils.isEmpty(objList)) throw new NullPointerException("無效的數(shù)據(jù)");
Class aClass = objList.get(0).getClass();
Field[] fields = aClass.getDeclaredFields();
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet sheet = workbook.createSheet();
for (int i = 0; i < objList.size(); i++) {
HSSFRow row = sheet.createRow(i + 1);//要從第二行開始寫
HSSFRow topRow = null;
if (i == 0) topRow = sheet.createRow(0);
for (Field field : fields) {
Excel excel = field.getAnnotation(Excel.class);//得到字段是否使用了Excel注解
if (excel == null) continue;
HSSFCell cell = row.createCell(excel.index());//設(shè)置當(dāng)前值放到第幾列
String startName = field.getName().substring(0, 1);
String endName = field.getName().substring(1, field.getName().length());
String methodName = new StringBuffer(GET).append(startName.toUpperCase()).append(endName).toString();
try {
Method method = aClass.getMethod(methodName);//根據(jù)方法名獲取方法,用于調(diào)用
Object invoke = method.invoke(objList.get(i));
if (invoke == null) continue;
cell.setCellValue(invoke.toString());
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
if (topRow == null) continue;
HSSFCell topRowCell = topRow.createCell(excel.index());
topRowCell.setCellValue(excel.name());
sheet.setColumnWidth(excel.index(), excel.width());
}
}
return workbook;
}
/**
* 將Excel文件轉(zhuǎn)換為指定對象
*
* @param file 傳入的Excel
* @param c 需要被指定的class
* @return
* @throws IOException
* @throws IllegalAccessException
* @throws InstantiationException
*/
public static <T> List<T> excelFileToObject(MultipartFile file, Class<T> c) throws IOException, IllegalAccessException, InstantiationException {
//key為反射得到的下標(biāo),value為對于的set方法
Map<Integer, String> methodMap = new HashMap<>();
//保存第一列的值與對應(yīng)的下標(biāo),用于驗(yàn)證用戶是否刪除了該列,key為下標(biāo),value為名字
Map<Integer, String> startRowNameMap = new HashMap<>();
//用來記錄當(dāng)前參數(shù)是否為必須的
Map<Integer, Boolean> fieldIsMustMap = new HashMap<>();
//得到所有的字段
Field[] fields = c.getDeclaredFields();
for (Field field : fields) {
Excel excel = field.getAnnotation(Excel.class);
if (excel == null) continue;
String startName = field.getName().substring(0, 1);
String endName = field.getName().substring(1, field.getName().length());
String methodName = new StringBuffer(SET).append(startName.toUpperCase()).append(endName).toString();
methodMap.put(excel.index(), methodName);
startRowNameMap.put(excel.index(), excel.name());
fieldIsMustMap.put(excel.index(), excel.isMust());
}
String fileName = file.getOriginalFilename();
Workbook wb = fileName.endsWith(".xlsx") ? new XSSFWorkbook(file.getInputStream()) : new HSSFWorkbook(file.getInputStream());
Sheet sheet = wb.getSheetAt(0);
Row sheetRow = sheet.getRow(0);
for (Cell cell : sheetRow) {
Integer columnIndex = cell.getColumnIndex();
if (cell.getCellTypeEnum() != CellType.STRING) throw new ExcelException("excel校驗(yàn)失敗, 請勿刪除文件中第一行數(shù)據(jù) !!!");
String value = cell.getStringCellValue();
String name = startRowNameMap.get(columnIndex);
if (name == null) throw new ExcelException("excel校驗(yàn)失敗,請勿移動文件中任何列的順序!!!");
if (!name.equals(value)) throw new ExcelException("excel校驗(yàn)失敗,【" + name + "】列被刪除,請勿刪除文件中任何列 !!!");
}
sheet.removeRow(sheetRow);//第一行是不需要被反射賦值的
List<T> models = new ArrayList<>();
for (Row row : sheet) {
if (row == null || !checkRow(row)) continue;
T obj = c.newInstance();//創(chuàng)建新的實(shí)例化對象
Class excelModelClass = obj.getClass();
startRowNameMap.entrySet().forEach(x -> {
Integer index = x.getKey();
Cell cell = row.getCell(index);
String methodName = methodMap.get(index);
if (StringUtils.isEmpty(methodName)) return;
List<Method> methods = Lists.newArrayList(excelModelClass.getMethods()).stream()
.filter(m -> m.getName().startsWith(SET)).collect(Collectors.toList());
String rowName = startRowNameMap.get(index);//列的名字
for (Method method : methods) {
if (!method.getName().startsWith(methodName)) continue;
//檢測value屬性
String value = valueCheck(cell, rowName, fieldIsMustMap.get(index));
//開始進(jìn)行調(diào)用方法反射賦值
methodInvokeHandler(obj, method, value);
}
});
models.add(obj);
}
return models;
}
/**
* 檢測當(dāng)前需要賦值的value
*
* @param cell 當(dāng)前循環(huán)行中的列對象
* @param rowName 列的名字{@link Excel}中的name
* @param isMust 是否為必須的
* @return 值
*/
private static String valueCheck(Cell cell, String rowName, Boolean isMust) {
//有時候刪除單個數(shù)據(jù)會造成cell為空,也可能是value為空
if (cell == null && isMust) {
throw new ExcelException("excel校驗(yàn)失敗,【" + rowName + "】中的數(shù)據(jù)禁止單個刪除");
}
if (cell == null) return null;
cell.setCellType(CellType.STRING);
String value = cell.getStringCellValue();
if ((value == null || value.trim().isEmpty()) && isMust) {
throw new ExcelException("excel校驗(yàn)失敗,【" + rowName + "】中的數(shù)據(jù)禁止單個刪除");
}
return value;
}
/**
* 反射賦值的處理的方法
*
* @param obj 循環(huán)創(chuàng)建的需要賦值的對象
* @param method 當(dāng)前對象期中一個set方法
* @param value 要被賦值的內(nèi)容
*/
private static void methodInvokeHandler(Object obj, Method method, String value) {
Class<?> parameterType = method.getParameterTypes()[0];
try {
if (parameterType == null) {
method.invoke(obj);
return;
}
String name = parameterType.getName();
if (name.equals(String.class.getName())) {
method.invoke(obj, value);
return;
}
if (name.equals(Long.class.getName())) {
method.invoke(obj, Long.valueOf(value));
return;
}
if (name.equals(Double.class.getName())) {
method.invoke(obj, Double.valueOf(value));
}
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
private static boolean checkRow(Row row) {
try {
if (row == null) return false;
short firstCellNum = row.getFirstCellNum();
short lastCellNum = row.getLastCellNum();
if (firstCellNum < 0 && lastCellNum < 0) return false;
if (firstCellNum != 0) {
for (short i = firstCellNum; i < lastCellNum; i++) {
Cell cell = row.getCell(i);
String cellValue = cell.getStringCellValue();
if (!StringUtils.isBlank(cellValue)) return true;
}
return false;
}
return true;
} catch (Exception e) {
return true;
}
}
4、導(dǎo)出Excel與導(dǎo)入Excel的示例代碼


使用展示
1、選擇數(shù)據(jù)

2、設(shè)置基本數(shù)據(jù),然后導(dǎo)出表格

3、導(dǎo)出表格效果,在圖片中看到A和B列沒有顯示出來,這是因?yàn)槲覍⑵鋵挾扰渲脼榱?

4、將必須參數(shù)刪除后上傳測試,如下圖中,商品編碼我設(shè)置isMust為false所以刪除數(shù)據(jù)就不會出現(xiàn)此問題。會提示驗(yàn)證失敗,具體錯誤查看圖片


5、將列中值的順序調(diào)整測試,也會提示驗(yàn)證失敗,具體效果如下圖


6、正常上傳測試,具體效果下如圖



到此這篇關(guān)于Java使用poi做加自定義注解實(shí)現(xiàn)對象與Excel相互轉(zhuǎn)換的文章就介紹到這了,更多相關(guān)Java 對象與Excel相互轉(zhuǎn)換內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
SpringBoot整合Mybatis?LocalDateTime?映射失效的解決
這篇文章主要介紹了SpringBoot整合Mybatis?LocalDateTime?映射失效的解決方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-01-01
spring boot 若依系統(tǒng)整合Ueditor部署時上傳圖片錯誤問題
這篇文章主要介紹了spring boot 若依系統(tǒng)整合Ueditor部署時上傳圖片錯誤問題,本文給大家分享問題解決方法,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-10-10
java將XML文檔轉(zhuǎn)換成json格式數(shù)據(jù)的示例
本篇文章主要介紹了java將XML文檔轉(zhuǎn)換成json格式數(shù)據(jù)的示例,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-12-12
springboot訪問template下的html頁面的實(shí)現(xiàn)配置
這篇文章主要介紹了springboot訪問template下的html頁面的實(shí)現(xiàn)配置,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-12-12
Spring?Boot項(xiàng)目中遇到`if-else`語句七種具體使用方法解析
當(dāng)在Spring?Boot項(xiàng)目中遇到大量if-else語句時,優(yōu)化這些代碼變得尤為重要,因?yàn)樗鼈儾粌H增加了維護(hù)難度,還可能影響應(yīng)用程序的可讀性和性能,以下是七種具體的方法,用于在Spring?Boot項(xiàng)目中優(yōu)化和重構(gòu)if-else語句,感興趣的朋友一起看看吧2024-07-07

