We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bdef41 commit e7f6bc6Copy full SHA for e7f6bc6
src/main/java/org/spacious_team/table_wrapper/excel/ExcelCellDataAccessObject.java
@@ -47,6 +47,16 @@ public Object getValue(Cell cell) {
47
};
48
}
49
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
+
60
@Override
61
public Instant getInstantValue(Cell cell) {
62
return cell.getDateCellValue().toInstant();
0 commit comments