POI实现插入行

http://hi.baidu.com/xiangliling/blog/item/9555da036d24b8f909fa9323.html

 

 

最近用POI实现根据模板导出excel,需要从中间行插入查询到的数据

但是用creatRow生成的数据会覆盖后面的模板内容

查了API没有找到插入行的方法

不过找到shiftRows方法将最后的空行移到需要插入行的位置,再用createRow生成

sheet.shiftRows(insertRowNum, sheet.getLastRowNum(), 1,true,false);

sheet.createRow(insertRowNum);

你可能感兴趣的:(poi)