This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
server
/
easypoi
Watch
6
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
修复null字符的问题
4.1.3.A
jueyue
9 years ago
parent
02109eb29a
commit
d0e1c7f3e4
1 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
View File
@@ -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;
}
Write
Preview
Loading…
Cancel
Save