——例外 2024-01-03 10:49 采纳率: 0%
浏览 4

使用poi复杂excel导出

img

这种复杂excel数据导出,有代码模版吗?使用的poi。
这种复杂excel数据导出,有代码模版吗?使用的poi。

  • 写回答

2条回答 默认 最新

  • 陈年小趴菜 2024-01-03 10:58
    关注
    import org.apache.poi.ss.usermodel.CellRangeAddress;
    import org.apache.poi.ss.usermodel.Sheet;
    import org.apache.poi.ss.usermodel.Workbook;
    
    public class ExcelUtils {
    
        /**
         * 合并行单元格
         *
         * @param sheet       工作表对象
         * @param firstRow    起始行索引(从0开始)
         * @param lastRow     结束行索引(从0开始)
         * @param firstColumn 起始列索引(从0开始)
         * @param lastColumn  结束列索引(从0开始)
         */
        public static void mergeRows(Sheet sheet, int firstRow, int lastRow, int firstColumn, int lastColumn) {
            sheet.addMergedRegion(new CellRangeAddress(firstRow, lastRow, firstColumn, lastColumn));
        }
    
        /**
         * 合并列单元格
         *
         * @param sheet       工作表对象
         * @param firstRow    起始行索引(从0开始)
         * @param lastRow     结束行索引(从0开始)
         * @param firstColumn 起始列索引(从0开始)
         * @param lastColumn  结束列索引(从0开始)
         */
        public static void mergeColumns(Sheet sheet, int firstRow, int lastRow, int firstColumn, int lastColumn) {
            for (int i = firstRow; i <= lastRow; i++) {
                sheet.addMergedRegion(new CellRangeAddress(i, i, firstColumn, lastColumn));
            }
        }
    }
    
    
    
    评论

报告相同问题?

问题事件

  • 创建了问题 1月3日

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效