一、存储单元格内容 行标 列标的实体类 PoiModel
package com.zsplat.qrcode.exportexcel.model;
/**
*
* @ClassName:PoiModel
* @Description:TODO(这里用一句话描述这个类的作用)
* @author: ZHOUPAN
* @date 2019年1月25日 下午3:10:30
*
* @Copyright: 2018 www.zsplat.com Inc. All rights reserved.
*/
public class PoiModel {
//内容
private String content;
//上一行同一位置内容
private String oldContent;
//行标
private int rowIndex;
//列标
private int cellIndex;
public String getOldContent() {
return oldContent;
}
public void setOldContent(String oldContent) {
this.oldContent = oldContent;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public int getRowIndex() {
return rowIndex;
}
public v
最后
以上就是知性缘分最近收集整理的关于使用POI 导出Excel 动态合并单元格的全部内容,更多相关使用POI内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复