我开发桌面应用程序涉及到Excel工作表,所以我不得不在两行之间插入行的一些问题,有没有可能做到这一点在Java中使用Apache POI
Workbook wb3=WorkbookFactory.create(new FileInputStream("Book1.xls"));
Sheet sh=wb3.getSheet("sheet1");
//Reading the available rows using (sh.getRow(1))
//Here i need to insert second row (????)
//I have third row here which is already exist (sh.getRow(3))