|
@@ -413,6 +413,7 @@ public class PoiUtils {
|
413
|
413
|
**/
|
414
|
414
|
public static String getCellValue(Cell cell) {
|
415
|
415
|
String value = null;
|
|
416
|
+ if (cell == null) return value;
|
416
|
417
|
DecimalFormat df = new DecimalFormat("0"); //格式化number String字符
|
417
|
418
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); //日期格式化
|
418
|
419
|
DecimalFormat df2 = new DecimalFormat("0"); //格式化数字
|