|
|
|
@ -121,7 +121,7 @@ public class ExcelUtil {
|
|
|
|
|
* @author peihao |
|
|
|
|
* @date 2021/10/13 |
|
|
|
|
**/ |
|
|
|
|
public static <T> List<T> importExcel(InputStream fileInputStream, int startSheet, int titleRow, int titleColumn, Class<T> clazz, String path) throws IOException { |
|
|
|
|
public static <T> List<T> importExcel(InputStream fileInputStream, int startSheet, int titleRow, int titleColumn, Class<T> clazz, String path) throws IOException { |
|
|
|
|
//读取文件的指定sheet
|
|
|
|
|
XSSFWorkbook workbook = new XSSFWorkbook(fileInputStream); |
|
|
|
|
XSSFSheet sheet = workbook.getSheetAt(startSheet); |
|
|
|
@ -151,6 +151,7 @@ public class ExcelUtil {
|
|
|
|
|
XSSFRow row = sheet.getRow(i); |
|
|
|
|
for (ExcelConfig excelConfig : excelConfigList) { |
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
Object value = getCellString(row.getCell(excelConfig.getColumn()), excelConfig.getValueType()); |
|
|
|
|
map.put(excelConfig.getFieldName(), value); |
|
|
|
|
} catch (Exception e) { |
|
|
|
@ -160,6 +161,7 @@ public class ExcelUtil {
|
|
|
|
|
} |
|
|
|
|
mapList.add(map); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return mapList.stream().map(e -> BeanUtil.mapToBean(e, clazz, true)).collect(Collectors.toList()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -262,7 +264,18 @@ public class ExcelUtil {
|
|
|
|
|
if (StringUtils.isEmpty(value)) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
return new BigDecimal(value).setScale(decimal, BigDecimal.ROUND_HALF_UP); |
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return new BigDecimal(value).setScale(decimal, BigDecimal.ROUND_HALF_UP); |
|
|
|
|
|
|
|
|
|
}catch (Exception e){ |
|
|
|
|
value=value.replaceAll("%",""); |
|
|
|
|
return new BigDecimal(value).setScale(decimal, BigDecimal.ROUND_HALF_UP); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -279,7 +292,18 @@ public class ExcelUtil {
|
|
|
|
|
if (StringUtils.isEmpty(value)) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
return new BigDecimal(value).multiply(new BigDecimal(mulitple)).setScale(decimal, BigDecimal.ROUND_HALF_UP); |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return new BigDecimal(value).multiply(new BigDecimal(mulitple)).setScale(decimal, BigDecimal.ROUND_HALF_UP); |
|
|
|
|
|
|
|
|
|
}catch (Exception e){ |
|
|
|
|
value=value.replaceAll("%",""); |
|
|
|
|
e.printStackTrace(); |
|
|
|
|
return new BigDecimal(value).setScale(decimal, BigDecimal.ROUND_HALF_UP); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|