我的Excel工作表在同一张纸上包含不同的区域,如:
region1: region2:
John 2 A 1
John 1 B 2
Sue 1 C 3
Sue 2 D 4
Alice 5 E 5
Bob 1 F 6
我想在其中一个区域添加新项目,而不会影响其他区域。我尝试使用rowShift()
方法,但它也删除了完整的行。是否有任何方法可以将特定单元格向下移动并可以将行插入特定区域,如下所示:在我给出的示例中,我想在region1中添加一行(同样保留所有旧行),它将变为:
region1: region2:
newval newval A 1
John 2 B 2
John 1 C 3
Sue 1 D 4
Sue 2 E 5
Alice 5 F 6
Bob 1
答案 0 :(得分:3)
如果上述问题仍然存在,我可以给你一个相同的方法。
public static void shiftCells(int startCellNo, int endCellNo, int shiftRowsBy, Sheet sheet){
int lastRowNum = sheet.getLastRowNum();
System.out.println(lastRowNum); //=7
// int rowNumAfterAdding = lastRowNum+shiftRowsBy;
for(int rowNum=lastRowNum;rowNum>0;rowNum--){
Row rowNew;
if(sheet.getRow((int)rowNum+shiftRowsBy)==null){
rowNew = sheet.createRow((int)rowNum+shiftRowsBy);
}
rowNew = sheet.getRow((int)rowNum+shiftRowsBy);
Row rowOld = sheet.getRow(rowNum);
System.out.println("RowNew is "+rowNum+" and Row Old is "+(int)(rowNum+shiftRowsBy));
System.out.println("startCellNo = "+startCellNo+" endCellNo = "+endCellNo+" shiftRowBy = "+shiftRowsBy);
for(int cellNo=startCellNo; cellNo<=endCellNo;cellNo++){
rowNew.createCell(cellNo).setCellValue(rowOld.getCell(cellNo).getStringCellValue().toString());
rowOld.getCell(cellNo).setCellValue("");
System.out.println("working on " +cellNo);
}
}
}