diff --git a/src/com/platform/utils/Compare4MyFilesEntity.java b/src/com/platform/utils/Compare4MyFilesEntity.java index 9bb2aa52..47bf0e97 100644 --- a/src/com/platform/utils/Compare4MyFilesEntity.java +++ b/src/com/platform/utils/Compare4MyFilesEntity.java @@ -2,12 +2,12 @@ package com.platform.utils; import java.util.Comparator; -import com.platform.entities.MyFilesEntity; +import com.platform.entities.SqlFileInfoEntity; -public class Compare4MyFilesEntity implements Comparator { +public class Compare4MyFilesEntity implements Comparator { @Override - public int compare(MyFilesEntity arg0, MyFilesEntity arg1) { + public int compare(SqlFileInfoEntity arg0, SqlFileInfoEntity arg1) { if (arg0.getSysStatus() < arg1.getSysStatus()) return 1; else diff --git a/src/com/platform/utils/FileOperateHelper.java b/src/com/platform/utils/FileOperateHelper.java index 276fafe7..b77c966f 100644 --- a/src/com/platform/utils/FileOperateHelper.java +++ b/src/com/platform/utils/FileOperateHelper.java @@ -27,7 +27,6 @@ public class FileOperateHelper { * @param path * @param message */ - @SuppressWarnings("resource") public static void fileWrite(String path, String message) { if (null == path || "".equals(path)) { return; @@ -41,6 +40,7 @@ public class FileOperateHelper { StringBuffer sb = new StringBuffer(); sb.append(message); out.write(sb.toString().getBytes("utf-8")); + out.close(); } catch (IOException e) { log.error(e.getStackTrace()); } @@ -65,6 +65,7 @@ public class FileOperateHelper { StringBuffer sb = new StringBuffer(); sb.append(message); out.write(sb.toString().getBytes("utf-8")); + out.close(); } catch (IOException e) { log.error(e.getStackTrace()); } diff --git a/src/com/platform/utils/excelUtils/ExcelOperation.java b/src/com/platform/utils/excelUtils/ExcelOperation.java index 34280b9b..3a162f4c 100644 --- a/src/com/platform/utils/excelUtils/ExcelOperation.java +++ b/src/com/platform/utils/excelUtils/ExcelOperation.java @@ -152,8 +152,9 @@ public class ExcelOperation { * @throws InstantiationException * @throws IllegalAccessException */ - public static List readExcel4Update(XSSFWorkbook workbook, int excelInitRow, int excelInitCell, Class classz, String... filter) throws InstantiationException, IllegalAccessException { + public static List readExcel4Update(XSSFWorkbook workbook, int excelInitRow, int excelInitCell, Object obj, String... filter) throws InstantiationException, IllegalAccessException { List filters = new ArrayList(); + Class classz = obj.getClass(); filters.addAll(Arrays.asList(filter)); List list = null; //读取工作表 @@ -180,7 +181,7 @@ public class ExcelOperation { } //实例化 Object newObj = classz.newInstance(); - Field[] fields = newObj.getClass().getDeclaredFields(); + Field[] fields = classz.getDeclaredFields(); int fieldSize = fields.length; boolean isAddObj = false; int num = 0; @@ -200,18 +201,19 @@ public class ExcelOperation { String cellString = getValue(cell); if (!"".equals(cellString)) { isAddObj = true; + String type = tmpField.getGenericType().toString(); //int型 - if (tmpField.getType().toString().contains("Integer") ||tmpField.getType().toString().contains("int")) { + if (type.contains("Integer") ||type.contains("int")) { double dnum = Double.valueOf(cellString); int inum = (int) dnum; tmpField.set(newObj, inum); } //double型 - else if (tmpField.getType().toString().contains("Double") ||tmpField.getType().toString().contains("double")) { + else if (type.contains("Double") ||type.contains("double")) { tmpField.set(newObj, Double.valueOf(cellString)); } //boolean型 - else if (tmpField.getType().toString().contains("boolean") ||tmpField.getType().toString().contains("Boolean")) { + else if (type.contains("boolean") ||type.contains("Boolean")) { tmpField.set(newObj, Boolean.valueOf(cellString)); } else { @@ -240,7 +242,12 @@ public class ExcelOperation { } switch (cell.getCellType()) { case XSSFCell.CELL_TYPE_NUMERIC: - value = String.valueOf(cell.getNumericCellValue()); + double doubleVal = cell.getNumericCellValue(); + long longVal = Math.round(cell.getNumericCellValue()); + if(Double.parseDouble(longVal + ".0") == doubleVal) + value = String.valueOf(longVal); + else + value = String.valueOf(doubleVal); break; case XSSFCell.CELL_TYPE_BOOLEAN: value = String.valueOf(cell.getBooleanCellValue());