|
|
@ -99,6 +99,7 @@ public class A9 {
|
|
|
|
|
|
|
|
|
|
|
|
for (List<String> row : source1) {
|
|
|
|
for (List<String> row : source1) {
|
|
|
|
String year = row.getFirst().split("\\.")[0];
|
|
|
|
String year = row.getFirst().split("\\.")[0];
|
|
|
|
|
|
|
|
year = year.replace("年", "");
|
|
|
|
Row outRow = outSheet.createRow(++rowIndex);
|
|
|
|
Row outRow = outSheet.createRow(++rowIndex);
|
|
|
|
String q1 = row.get(1);
|
|
|
|
String q1 = row.get(1);
|
|
|
|
if (StrKit.isBlank(q1)) {
|
|
|
|
if (StrKit.isBlank(q1)) {
|
|
|
@ -128,6 +129,7 @@ public class A9 {
|
|
|
|
|
|
|
|
|
|
|
|
for (List<String> row : source2) {
|
|
|
|
for (List<String> row : source2) {
|
|
|
|
String year = row.getFirst().split("\\.")[0];
|
|
|
|
String year = row.getFirst().split("\\.")[0];
|
|
|
|
|
|
|
|
year = year.replace("年", "");
|
|
|
|
Row outRow = outSheet.createRow(++rowIndex);
|
|
|
|
Row outRow = outSheet.createRow(++rowIndex);
|
|
|
|
String q1 = row.get(1);
|
|
|
|
String q1 = row.get(1);
|
|
|
|
if (StrKit.isBlank(q1)) {
|
|
|
|
if (StrKit.isBlank(q1)) {
|
|
|
|