web_backend_develope
chenlw 9 years ago
parent 1e8479454b
commit 3feaed0387

@ -2,12 +2,12 @@ package com.platform.utils;
import java.util.Comparator; import java.util.Comparator;
import com.platform.entities.MyFilesEntity; import com.platform.entities.SqlFileInfoEntity;
public class Compare4MyFilesEntity implements Comparator<MyFilesEntity> { public class Compare4MyFilesEntity implements Comparator<SqlFileInfoEntity> {
@Override @Override
public int compare(MyFilesEntity arg0, MyFilesEntity arg1) { public int compare(SqlFileInfoEntity arg0, SqlFileInfoEntity arg1) {
if (arg0.getSysStatus() < arg1.getSysStatus()) if (arg0.getSysStatus() < arg1.getSysStatus())
return 1; return 1;
else else

@ -27,7 +27,6 @@ public class FileOperateHelper {
* @param path * @param path
* @param message * @param message
*/ */
@SuppressWarnings("resource")
public static void fileWrite(String path, String message) { public static void fileWrite(String path, String message) {
if (null == path || "".equals(path)) { if (null == path || "".equals(path)) {
return; return;
@ -41,6 +40,7 @@ public class FileOperateHelper {
StringBuffer sb = new StringBuffer(); StringBuffer sb = new StringBuffer();
sb.append(message); sb.append(message);
out.write(sb.toString().getBytes("utf-8")); out.write(sb.toString().getBytes("utf-8"));
out.close();
} catch (IOException e) { } catch (IOException e) {
log.error(e.getStackTrace()); log.error(e.getStackTrace());
} }
@ -65,6 +65,7 @@ public class FileOperateHelper {
StringBuffer sb = new StringBuffer(); StringBuffer sb = new StringBuffer();
sb.append(message); sb.append(message);
out.write(sb.toString().getBytes("utf-8")); out.write(sb.toString().getBytes("utf-8"));
out.close();
} catch (IOException e) { } catch (IOException e) {
log.error(e.getStackTrace()); log.error(e.getStackTrace());
} }

@ -152,8 +152,9 @@ public class ExcelOperation {
* @throws InstantiationException * @throws InstantiationException
* @throws IllegalAccessException * @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<String> filters = new ArrayList<String>(); List<String> filters = new ArrayList<String>();
Class<?> classz = obj.getClass();
filters.addAll(Arrays.asList(filter)); filters.addAll(Arrays.asList(filter));
List list = null; List list = null;
//读取工作表 //读取工作表
@ -180,7 +181,7 @@ public class ExcelOperation {
} }
//实例化 //实例化
Object newObj = classz.newInstance(); Object newObj = classz.newInstance();
Field[] fields = newObj.getClass().getDeclaredFields(); Field[] fields = classz.getDeclaredFields();
int fieldSize = fields.length; int fieldSize = fields.length;
boolean isAddObj = false; boolean isAddObj = false;
int num = 0; int num = 0;
@ -200,18 +201,19 @@ public class ExcelOperation {
String cellString = getValue(cell); String cellString = getValue(cell);
if (!"".equals(cellString)) { if (!"".equals(cellString)) {
isAddObj = true; isAddObj = true;
String type = tmpField.getGenericType().toString();
//int型 //int型
if (tmpField.getType().toString().contains("Integer") ||tmpField.getType().toString().contains("int")) { if (type.contains("Integer") ||type.contains("int")) {
double dnum = Double.valueOf(cellString); double dnum = Double.valueOf(cellString);
int inum = (int) dnum; int inum = (int) dnum;
tmpField.set(newObj, inum); tmpField.set(newObj, inum);
} }
//double型 //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)); tmpField.set(newObj, Double.valueOf(cellString));
} }
//boolean型 //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)); tmpField.set(newObj, Boolean.valueOf(cellString));
} }
else { else {
@ -240,7 +242,12 @@ public class ExcelOperation {
} }
switch (cell.getCellType()) { switch (cell.getCellType()) {
case XSSFCell.CELL_TYPE_NUMERIC: 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; break;
case XSSFCell.CELL_TYPE_BOOLEAN: case XSSFCell.CELL_TYPE_BOOLEAN:
value = String.valueOf(cell.getBooleanCellValue()); value = String.valueOf(cell.getBooleanCellValue());

Loading…
Cancel
Save