无法理解apache POI的shiftRows方法的工作

时间:2016-03-04 10:27:10

标签: java apache-poi

我正在使用.xls文件我要将excell表的行转换(转移)到特定位置。但每次都得到不需要的结果。我已经通过方法shiftRows的文档。无法理解这个语句的工作。

sheet.shiftRows(34, sheet.getLastRowNum(), processIndex-4);

有时它在Excell Table中移动了两行。

1 个答案:

答案 0 :(得分:3)

        sheet.shiftRows(int startRow, int endRow, int n);

用于向下移动工作表中的行数。 其中

  • startRow =我们需要插入行。
  • endRows =总行数
  • n =我们要插入多少行

org.apache.poi.ss.usermodel.Sheet.shiftRows的javadoc提供了更多详细信息。