Browse Source

in notin增加null

menglu 3 years ago
parent
commit
b8fd5f55c4

+ 1 - 1
ibms-data-sdk/pom.xml

@@ -216,7 +216,7 @@
 		<dependency>
 			<groupId>com.persagy</groupId>
 			<artifactId>sailfish</artifactId>
-			<version>0.0.17</version>
+			<version>0.0.18</version>
 		</dependency>
 	</dependencies>
 

+ 2 - 0
ibms-data-sdk/src/main/java/com/persagy/ibms/data/sdk/util/ExcelCommonUtil.java

@@ -141,6 +141,7 @@ public class ExcelCommonUtil {
 			}
 			result.put(name, ExcelSheet);
 		}
+		workbook.close();
 
 		return result;
 	}
@@ -154,6 +155,7 @@ public class ExcelCommonUtil {
 		} else {
 			ExcelSheet = GetSheetContent(sheet);
 		}
+		workbook.close();
 
 		return ExcelSheet;
 	}