解决商品导出excel失败的bug

This commit is contained in:
季圣华
2019-07-30 23:13:32 +08:00
parent 0e46a9f21d
commit 5e1a899f7b
2 changed files with 16 additions and 13 deletions

View File

@@ -215,4 +215,16 @@ public class StringUtil {
}
return value;
}
public static String toNull(String value) {
if(("").equals(value)) {
value = null;
}
return value;
}
public static void main(String[] args) {
int i = 10/3;
System.out.println(i);
}
}