web_backend_develope
chenlw 9 years ago
parent 1e8479454b
commit 3feaed0387

@ -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<MyFilesEntity> {
public class Compare4MyFilesEntity implements Comparator<SqlFileInfoEntity> {
@Override
public int compare(MyFilesEntity arg0, MyFilesEntity arg1) {
public int compare(SqlFileInfoEntity arg0, SqlFileInfoEntity arg1) {
if (arg0.getSysStatus() < arg1.getSysStatus())
return 1;
else

@ -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());
}

@ -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<String> filters = new ArrayList<String>();
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());

Loading…
Cancel
Save