Parcourir la source

导入Excel根据表头与注解名匹配

RuoYi il y a 5 ans
Parent
commit
b1f4952cde

+ 1 - 1
ruoyi-admin/pom.xml

@@ -8,7 +8,7 @@
         <version>3.3</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-	<packaging>war</packaging>
+	<packaging>jar</packaging>
     <artifactId>ruoyi-admin</artifactId>
 	
 	<description>

+ 9 - 6
ruoyi-common/src/main/java/com/ruoyi/common/utils/poi/ExcelUtil.java

@@ -136,17 +136,20 @@ public class ExcelUtil<T>
 
         if (rows > 0)
         {
-
             // 定义一个map用于存放excel列的序号和field.
             Map<String, Integer> cellMap = new HashMap<String, Integer>();
-            //获取表头
+            // 获取表头
             Row heard = sheet.getRow(0);
-            for (int i = 0; i < heard.getPhysicalNumberOfCells(); i++) {
+            for (int i = 0; i < heard.getPhysicalNumberOfCells(); i++)
+            {
                 Cell cell = heard.getCell(i);
-                if (StringUtils.isNotNull(cell != null)) {
-                    String value=this.getCellValue(heard, i).toString();
+                if (StringUtils.isNotNull(cell != null))
+                {
+                    String value = this.getCellValue(heard, i).toString();
                     cellMap.put(value, i);
-                } else {
+                }
+                else
+                {
                     cellMap.put(null, i);
                 }
             }