Java-Excel报表开发POI系列
文章平均质量分 69
cai555
这个作者很懒,什么都没留下…
展开
-
POI拷贝Sheet包括每个单元格的style
注意本例需要jxls的支持 /** * copy all rows include styles from source sheet to target sheet * @param srcSheet * @param targetSheet */ public static void copySheet(HSSFSheet srcSheet, HSSFSheet targe...2008-06-13 14:37:29 · 961 阅读 · 1 评论 -
POI实现插入一行操作,就像office excel插入一行的操作
注意此例需要jxls的支持 : /** * insert row into the target sheet, the style of cell is the same as startRow * @param wb * @param sheet * @param starRow - the row to start shifting * @param rows *...2008-06-13 14:41:44 · 7421 阅读 · 2 评论