在现有行之间添加2行
我需要在第14行和第15行之间添加2行。
为此,我正在使用:
sheet.shiftRows(14, 15, rowToBeAdd);
但是,而不是添加这两行,我的应用程序正在列14行。
public static void addRow(int amount, int currentRow) throws Exception { sheet.shiftRows(currentRow, sheet.getLastRowNum(), amount); }
上面提到的方法可能会对您的问题提供一些启示。 参数是数量和当前行。 不是Currentrow和最后一排。