|
@@ -106,8 +106,8 @@ public class CarYueJieJob {
|
|
|
List<Map<String, String>> list = readFile(path);
|
|
|
List<Map<String, String>> distinctList = dataProcessing(path, list);
|
|
|
Path csvPath = toCsv(path, distinctList);
|
|
|
- copyCsv(csvPath);
|
|
|
- move(path);
|
|
|
+// copyCsv(csvPath);
|
|
|
+// move(path);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -152,7 +152,7 @@ public class CarYueJieJob {
|
|
|
// 遍历行
|
|
|
for (int i = 1; i <= lastRowNum; i++) {
|
|
|
Row row = sheet.getRow(i);
|
|
|
- if (row == null) {
|
|
|
+ if (row == null || row.getCell(0) == null) {
|
|
|
continue;
|
|
|
}
|
|
|
Map<String, String> rowMap = new LinkedHashMap<>();
|