我正在使用.xls文件我要将excell表的行转换(转移)到特定位置。但每次都得到不需要的结果。我已经通过方法shiftRows的文档。无法理解这个语句的工作。
sheet.shiftRows(34, sheet.getLastRowNum(), processIndex-4);
有时它在Excell Table中移动了两行。
答案 0 :(得分:3)
sheet.shiftRows(int startRow, int endRow, int n);
用于向下移动工作表中的行数。 其中
org.apache.poi.ss.usermodel.Sheet.shiftRows的javadoc提供了更多详细信息。