Skip to content

Commit e7f6bc6

Browse files
committed
fix converting cell number value to string
1 parent 7bdef41 commit e7f6bc6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/org/spacious_team/table_wrapper/excel/ExcelCellDataAccessObject.java

+10
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,16 @@ public Object getValue(Cell cell) {
4747
};
4848
}
4949

50+
@Override
51+
public String getStringValue(Cell cell) {
52+
Object value = getValue(cell);
53+
String strValue = value.toString();
54+
if ((value instanceof Number) && strValue.endsWith(".0")) {
55+
return strValue.substring(0, strValue.length() - 2);
56+
}
57+
return strValue;
58+
}
59+
5060
@Override
5161
public Instant getInstantValue(Cell cell) {
5262
return cell.getDateCellValue().toInstant();

0 commit comments

Comments
 (0)