瀏覽代碼

修复null字符的问题

4.1.3.A
jueyue 9 年之前
父節點
當前提交
d0e1c7f3e4
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. +3
    -0
      easypoi-base/src/main/java/org/jeecgframework/poi/excel/imports/CellValueServer.java

+ 3
- 0
easypoi-base/src/main/java/org/jeecgframework/poi/excel/imports/CellValueServer.java 查看文件

@@ -242,6 +242,9 @@ public class CellValueServer {
*/
private Object getValueByType(String xclass, Object result, ExcelImportEntity entity) {
try {
if(result == null){
return null;
}
if ("class java.util.Date".equals(xclass)) {
return result;
}


Loading…
取消
儲存