sheet.getRow(rowIndex);为null_POI导出excel
2021-01-22 08:14
阅读:424
标签:color class 使用 div 需要 creat 记录 出现 style 第一次使用POI,出现这个问题,看到有其他猿也遇到过,不知道怎么处理,所以记录一下~ sheet.getRow(rowIndex);为null_POI导出excel 标签:color class 使用 div 需要 creat 记录 出现 style 原文地址:https://www.cnblogs.com/sunchunmei/p/12085135.htmlsheet.getRow(rowIndex);通过sheet获取指定行,rowIndex代表第几行
用rowIndex行,需要判断该row是否为null,为null就是该row不存在,需要创建该行才能使用。
Row row = sheet.getRow(rowIndex);
if (row == null) {
row = sheet.createRow(rowIndex);
}
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:sheet.getRow(rowIndex);为null_POI导出excel
文章链接:http://soscw.com/index.php/essay/45363.html
文章标题:sheet.getRow(rowIndex);为null_POI导出excel
文章链接:http://soscw.com/index.php/essay/45363.html
评论
亲,登录后才可以留言!