src/main/java/kr/wisestone/owl/util/CommonUtil.java
@@ -40,6 +40,7 @@ import java.security.MessageDigest; import java.security.spec.KeySpec; import java.text.DecimalFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.*; import java.util.regex.Matcher; @@ -962,7 +963,7 @@ double doubleValue = cell.getNumericCellValue(); int intValue; if (doubleValue%1 == 0) { if (doubleValue % 1 == 0) { intValue = (int)doubleValue; cellValue = intValue + ""; }