Commit 228ba2fb46daa8ae6596eaa4f8af1e10a0b8ba38
1 parent
fcc2bf92
Exists in
master
.
Showing
2 changed files
with
3 additions
and
2 deletions
Show diff stats
build.gradle
src/main/java/com/taover/util/UtilExcel.java
... | ... | @@ -296,7 +296,8 @@ public class UtilExcel { |
296 | 296 | }else if(cell.getCellType() == HSSFCell.CELL_TYPE_BOOLEAN){ |
297 | 297 | dataRow.add(Boolean.valueOf(cell.getBooleanCellValue())); |
298 | 298 | }else if(cell.getCellType() == HSSFCell.CELL_TYPE_FORMULA){ |
299 | - dataRow.add(cell.getNumericCellValue()); | |
299 | + dataRow.add(""); | |
300 | + //dataRow.add(cell.getNumericCellValue()); | |
300 | 301 | }else{ |
301 | 302 | dataRow.add(cell.getStringCellValue()); |
302 | 303 | } | ... | ... |