在现有行之间添加2行

时间:2014-12-11 17:59:31

标签: java excel apache-poi

我需要在第14行和第15行之间添加2行。

为此我正在使用:

sheet.shiftRows(14, 15, rowToBeAdd);

但是我的应用程序没有添加这两行,而是在第14行进行了解释。

1 个答案:

答案 0 :(得分:1)

 public static void addRow(int amount, int currentRow) throws Exception {
    sheet.shiftRows(currentRow, sheet.getLastRowNum(), amount);
}

上述方法可能会对您的问题有所了解。参数是Amount&好的一排。不是Currentrow和结束行。