自定义导出模板-2.0

This commit is contained in:
李贵强 2025-02-27 16:57:40 +08:00
parent bd49c756ff
commit ff5df9b25d
2 changed files with 249 additions and 212 deletions

View File

@ -66,17 +66,22 @@ public class AreaDataImportPlugin extends AbstractFormPlugin implements Plugin {
Long id = Long.parseLong(returnData.get(i).getString("qeug_id"));
DynamicObject dynamicObject = BusinessDataServiceHelper.loadSingle(id, "qeug_areatemplate");
if (null!=dynamicObject){
String templateName = dynamicObject.getString("qeug_remark");
DynamicObjectCollection areaEntry = dynamicObject.getDynamicObjectCollection("qeug_entryentity");
Control productView= this.getView().getControl("productentry");
Control areaView= this.getView().getControl("qeug_subentryentity");
StringBuilder message =new StringBuilder();
String url;
String url=null;
if (areaEntry.size()!=0){
//导出自定义模板
url = ExportTemplateUtil.exportTemplate(areaEntry, message, productView, areaView);
url = ExportTemplateUtil.exportTemplate(areaEntry, message, productView, areaView,templateName);
}else {
//导出默认模板
url = ExportTemplateUtil.exportTemplate(message, productView, areaView);
url = ExportTemplateUtil.exportTemplate(message, productView, areaView,templateName);
}
// 展示消息
if (message.length() > 0) {
this.getView().showMessage(message.toString());
}
if (null!=url){
this.getView().openUrl(url);
@ -84,7 +89,6 @@ public class AreaDataImportPlugin extends AbstractFormPlugin implements Plugin {
}
}
}
}
}

View File

@ -4,6 +4,9 @@ import kd.bos.context.RequestContext;
import kd.bos.dataentity.entity.DynamicObject;
import kd.bos.dataentity.entity.DynamicObjectCollection;
import kd.bos.dataentity.entity.LocaleString;
import kd.bos.dataentity.utils.StringUtils;
import kd.bos.entity.ValueMapItem;
import kd.bos.entity.property.ComboProp;
import kd.bos.fileservice.FileItem;
import kd.bos.fileservice.FileService;
import kd.bos.fileservice.FileServiceFactory;
@ -11,13 +14,12 @@ import kd.bos.form.control.Control;
import kd.bos.orm.query.QCP;
import kd.bos.orm.query.QFilter;
import kd.bos.servicehelper.BusinessDataServiceHelper;
import org.apache.poi.ss.usermodel.FillPatternType;
import org.apache.poi.ss.usermodel.HorizontalAlignment;
import org.apache.poi.ss.usermodel.IndexedColors;
import org.apache.poi.ss.usermodel.VerticalAlignment;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.ss.util.CellRangeAddressList;
import org.apache.poi.xssf.usermodel.*;
import java.awt.*;
import java.awt.Color;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
@ -32,143 +34,142 @@ public class ExportTemplateUtil {
/**
* 导出默认模板
*
* @param message 消息收集
* @param message 消息收集
* @param productView 产品构成视图
* @param areaView 数据面积视图
* @param templateName 模板名称
*/
public static String exportTemplate(StringBuilder message, Control productView, Control areaView){
public static String exportTemplate(StringBuilder message, Control productView, Control areaView, String templateName) {
QFilter number = new QFilter("number", QCP.equals, "repmd_projectbill_IMPT_ENTRY");
DynamicObject templateObj = BusinessDataServiceHelper.loadSingle("bos_importentry_template", number.toArray());
if (null==templateObj){
message.append("请先维护引入模板");
if (templateObj == null) {
message.append("请先维护系统引入模板\n");
return null;
}
// 读取系统模板参数
List<Template> templateList = readSysTemplate(templateObj, productView, areaView, message);
if (templateList.isEmpty()) {
message.append("未找到模板数据\n");
return null;
}
//读取系统模板参数
List<Template> templateList = readSysTemplate(templateObj, productView, areaView);
if (templateList.size()==0) return null;
//构建导出前四行数据
// 创建Excel工作簿
XSSFWorkbook workbook = new XSSFWorkbook();
XSSFSheet sheet = workbook.createSheet("产品构成 # productentry");
// 第一行明细标题
XSSFRow row1 = sheet.createRow(0);
XSSFCell cell1 = row1.createCell(0);
cell1.setCellValue("产品构成 # productentry");
XSSFCell cell2 = row1.createCell(1);
cell2.setCellValue("子单据体 # qeug_subentryentity");
XSSFCellStyle style1 = workbook.createCellStyle();
XSSFFont font1 = workbook.createFont();
font1.setFontName("宋体");
font1.setFontHeightInPoints((short) 11);
style1.setFont(font1);
style1.setAlignment(HorizontalAlignment.CENTER);
style1.setVerticalAlignment(VerticalAlignment.CENTER);
sheet.setColumnWidth(0, 31 * 256);
row1.setHeightInPoints(14.4f);
cell1.setCellStyle(style1);
cell2.setCellStyle(style1);
// 第二行说明文本
XSSFRow row2 = sheet.createRow(1);
XSSFCell cell3 = row2.createCell(0);
cell3.setCellValue("1、请将鼠标移到灰色标题行查看字段录入要求。2、红色带星号*)的字段为必录字段。");
XSSFCellStyle style2 = workbook.createCellStyle();
XSSFFont font2 = workbook.createFont();
font2.setFontName("Calibri");
font2.setFontHeightInPoints((short) 11);
font2.setColor(IndexedColors.RED.getIndex());
style2.setFont(font2);
style2.setAlignment(HorizontalAlignment.LEFT);
style2.setVerticalAlignment(VerticalAlignment.CENTER);
style2.setWrapText(true); // 自动换行
row2.setHeightInPoints(60);
sheet.setColumnWidth(0, 31 * 256); // 设置列宽
cell3.setCellStyle(style2);
try {
// 创建前四行标题和说明
createTitleRow(sheet, workbook);
createDescriptionRow(sheet, workbook);
createTemplateHeaders(sheet, workbook, templateList);
//其它设置
otherStyleSet(sheet,workbook,areaView);
// 上传Excel文件并获取下载路径
String uploadedFilePath = uploadExcel(workbook, templateName);
return RequestContext.get().getClientFullContextPath() + "/attachment/download.do?path=" + uploadedFilePath;
// 第三行templateList中的number
XSSFRow row3 = sheet.createRow(2);
for (int i = 0; i < templateList.size(); i++) {
Template template = templateList.get(i);
String entityNumber=null;
String importProp = template.getImportProp();
if (!("").equals(importProp)&&null!=importProp){
entityNumber = template.getNumber()+"."+template.getImportProp();
}else {
entityNumber = template.getNumber();
}
XSSFCell cell = row3.createCell(i);
cell.setCellValue(entityNumber);
XSSFCellStyle style3 = workbook.createCellStyle();
XSSFFont font3 = workbook.createFont();
font3.setFontName("宋体");
font3.setFontHeightInPoints((short) 11);
style3.setFont(font3);
style3.setAlignment(HorizontalAlignment.CENTER);
style3.setVerticalAlignment(VerticalAlignment.CENTER);
sheet.setColumnWidth(i, 31 * 256); // 设置列宽
row3.setHeightInPoints(14.4f);
cell.setCellStyle(style3);
} catch (Exception e) {
message.append("导出模板失败: ").append(e.getMessage()).append("\n");
e.printStackTrace();
return null;
}
// 第四行templateList中的name
XSSFRow row4 = sheet.createRow(3);
for (int i = 0; i < templateList.size(); i++) {
Template template = templateList.get(i);
XSSFCell cell = row4.createCell(i);
String name=template.getName();
XSSFCellStyle style4 = workbook.createCellStyle();
XSSFFont font4 = workbook.createFont();
font4.setFontName("Calibri");
font4.setFontHeightInPoints((short) 11);
//必录
if (template.isMustInput()){
name="*"+template.getName();
font4.setColor(IndexedColors.RED.getIndex());
if ("number".equals(template.getImportProp())){
name=name+".编码";
}else if ("name".equals(template.getImportProp())){
name=name+".名称";
}
}
style4.setFont(font4);
style4.setAlignment(HorizontalAlignment.CENTER);
style4.setVerticalAlignment(VerticalAlignment.CENTER);
style4.setFillForegroundColor(new XSSFColor(new Color(192, 192, 192), new DefaultIndexedColorMap())); // 灰色背景
style4.setFillPattern(FillPatternType.SOLID_FOREGROUND);
sheet.setColumnWidth(i, 31 * 256); // 设置列宽
row4.setHeightInPoints(14.4f);
cell.setCellValue(name);
cell.setCellStyle(style4);
}
// 上传Excel文件并获取下载路径
String uploadedFilePath = uploadExcel(workbook);
return RequestContext.get().getClientFullContextPath() + "/attachment/download.do?path=" + uploadedFilePath;
}
/**
* 导出自定义模板
* @param collections 配置的参数分录
* @param message 消息收集
*
* @param collections 配置的参数分录
* @param message 消息收集
* @param productView 产品构成视图
* @param areaView 数据面积视图
* @param templateName 模板名称
*/
public static String exportTemplate(DynamicObjectCollection collections,StringBuilder message,Control productView, Control areaView){
public static String exportTemplate(DynamicObjectCollection collections, StringBuilder message, Control productView, Control areaView, String templateName) {
QFilter number = new QFilter("number", QCP.equals, "repmd_projectbill_IMPT_ENTRY");
DynamicObject templateObj = BusinessDataServiceHelper.loadSingle("bos_importentry_template", number.toArray());
if (null==templateObj){
message.append("请先维护引入模板");
if (templateObj == null) {
message.append("请先维护系统引入模板\n");
return null;
}
//读取系统模板参数
List<Template> templateList = readSysTemplate(templateObj, productView, areaView);
if (templateList.size()==0) return null;
//构建导出前四行数据
// 读取系统模板参数
List<Template> templateList = readSysTemplate(templateObj, productView, areaView, message);
if (templateList.isEmpty()) {
message.append("未找到模板数据\n");
return null;
}
// 创建Excel工作簿
XSSFWorkbook workbook = new XSSFWorkbook();
XSSFSheet sheet = workbook.createSheet("产品构成 # productentry");
// 第一行明细标题
try {
// 创建前四行标题和说明
createTitleRow(sheet, workbook);
createDescriptionRow(sheet, workbook);
createTemplateHeaders(sheet, workbook, templateList);
//其它设置
otherStyleSet(sheet,workbook,areaView);
// 填充自定义模板数据
fillCustomTemplateData(sheet, workbook, collections, templateList, message);
// 上传Excel文件并获取下载路径
String uploadedFilePath = uploadExcel(workbook, templateName);
return RequestContext.get().getClientFullContextPath() + "/attachment/download.do?path=" + uploadedFilePath;
} catch (Exception e) {
message.append("导出模板失败: ").append(e.getMessage()).append("\n");
e.printStackTrace();
return null;
}
}
private static void otherStyleSet(XSSFSheet sheet,XSSFWorkbook workbook, Control areaView) {
int numColumns = sheet.getRow(3).getPhysicalNumberOfCells(); // 获取总列数
// 遍历第四行检查是否为分类*分类
for (int colIndex = 0; colIndex < numColumns; colIndex++) {
Cell cell = sheet.getRow(3).getCell(colIndex);
String stringCellValue = cell.getStringCellValue();
// 如果是分类或*分类
if ("分类".equals(stringCellValue) || "*分类".equals(stringCellValue)) {
// 获取下拉项数据
Cell numberCell = sheet.getRow(2).getCell(colIndex);
ComboProp type = (ComboProp) areaView.getModel().getProperty(numberCell.getStringCellValue());
List<ValueMapItem> comboItems = type.getComboItems();
String[] comboValues = new String[comboItems.size()];
// 将下拉项值填充到数组中
for (int i = 0; i < comboItems.size(); i++) {
comboValues[i] = comboItems.get(i).getValue();
}
// 创建数据验证规则
DataValidationHelper helper = sheet.getDataValidationHelper();
DataValidationConstraint constraint = helper.createExplicitListConstraint(comboValues);
CellRangeAddressList addressList = new CellRangeAddressList(4, 500, colIndex, colIndex); // 从A5到A501
// 创建数据验证对象
DataValidation dataValidation = helper.createValidation(constraint, addressList);
// 将数据验证规则添加到表格中
sheet.addValidationData(dataValidation);
}
}
// 设置冻结前四行
sheet.createFreezePane(0, 4);
}
/**
* 创建标题行
*/
private static void createTitleRow(XSSFSheet sheet, XSSFWorkbook workbook) {
XSSFRow row1 = sheet.createRow(0);
XSSFCell cell1 = row1.createCell(0);
cell1.setCellValue("产品构成 # productentry");
XSSFCell cell2 = row1.createCell(1);
cell2.setCellValue("子单据体 # qeug_subentryentity");
XSSFCellStyle style1 = workbook.createCellStyle();
XSSFFont font1 = workbook.createFont();
font1.setFontName("宋体");
@ -180,11 +181,16 @@ public class ExportTemplateUtil {
row1.setHeightInPoints(14.4f);
cell1.setCellStyle(style1);
cell2.setCellStyle(style1);
}
// 第二行说明文本
/**
* 创建说明行
*/
private static void createDescriptionRow(XSSFSheet sheet, XSSFWorkbook workbook) {
XSSFRow row2 = sheet.createRow(1);
XSSFCell cell3 = row2.createCell(0);
cell3.setCellValue("1、请将鼠标移到灰色标题行查看字段录入要求。2、红色带星号*)的字段为必录字段。");
XSSFCellStyle style2 = workbook.createCellStyle();
XSSFFont font2 = workbook.createFont();
font2.setFontName("Calibri");
@ -193,22 +199,21 @@ public class ExportTemplateUtil {
style2.setFont(font2);
style2.setAlignment(HorizontalAlignment.LEFT);
style2.setVerticalAlignment(VerticalAlignment.CENTER);
style2.setWrapText(true); // 自动换行
style2.setWrapText(true);
row2.setHeightInPoints(60);
sheet.setColumnWidth(0, 31 * 256); // 设置列宽
sheet.setColumnWidth(0, 31 * 256);
cell3.setCellStyle(style2);
}
// 第三行templateList中的number
/**
* 创建模板头部行
*/
private static void createTemplateHeaders(XSSFSheet sheet, XSSFWorkbook workbook, List<Template> templateList) {
XSSFRow row3 = sheet.createRow(2);
for (int i = 0; i < templateList.size(); i++) {
Template template = templateList.get(i);
String entityNumber=null;
String importProp = template.getImportProp();
if (!("").equals(importProp)&&null!=importProp){
entityNumber = template.getNumber()+"."+template.getImportProp();
}else {
entityNumber = template.getNumber();
}
String entityNumber = StringUtils.isNotBlank(template.getImportProp()) ? template.getNumber() + "." + template.getImportProp() : template.getNumber();
XSSFCell cell = row3.createCell(i);
cell.setCellValue(entityNumber);
@ -219,43 +224,45 @@ public class ExportTemplateUtil {
style3.setFont(font3);
style3.setAlignment(HorizontalAlignment.CENTER);
style3.setVerticalAlignment(VerticalAlignment.CENTER);
sheet.setColumnWidth(i, 31 * 256); // 设置列宽
sheet.setColumnWidth(i, 31 * 256);
row3.setHeightInPoints(14.4f);
cell.setCellStyle(style3);
}
// 第四行templateList中的name
XSSFRow row4 = sheet.createRow(3);
for (int i = 0; i < templateList.size(); i++) {
Template template = templateList.get(i);
XSSFCell cell = row4.createCell(i);
String name=template.getName();
String name = template.getName();
XSSFCellStyle style4 = workbook.createCellStyle();
XSSFFont font4 = workbook.createFont();
font4.setFontName("Calibri");
font4.setFontHeightInPoints((short) 11);
//必录
if (template.isMustInput()){
name="*"+template.getName();
if (template.isMustInput()) {
name = "*" + name;
font4.setColor(IndexedColors.RED.getIndex());
if ("number".equals(template.getImportProp())){
name=name+".编码";
}else if ("name".equals(template.getImportProp())){
name=name+".名称";
if ("number".equals(template.getImportProp())) {
name = name + ".编码";
} else if ("name".equals(template.getImportProp())) {
name = name + ".名称";
}
}
style4.setFont(font4);
style4.setAlignment(HorizontalAlignment.CENTER);
style4.setVerticalAlignment(VerticalAlignment.CENTER);
style4.setFillForegroundColor(new XSSFColor(new Color(192, 192, 192), new DefaultIndexedColorMap())); // 灰色背景
style4.setFillForegroundColor(new XSSFColor(new Color(192, 192, 192), new DefaultIndexedColorMap()));
style4.setFillPattern(FillPatternType.SOLID_FOREGROUND);
sheet.setColumnWidth(i, 31 * 256); // 设置列宽
sheet.setColumnWidth(i, 31 * 256);
row4.setHeightInPoints(14.4f);
XSSFCell cell = row4.createCell(i);
cell.setCellValue(name);
cell.setCellStyle(style4);
}
}
//填充自定义模板数据
/**
* 填充自定义模板数据
*/
private static void fillCustomTemplateData(XSSFSheet sheet, XSSFWorkbook workbook, DynamicObjectCollection collections, List<Template> templateList, StringBuilder message) {
for (int i = 0; i < collections.size(); i++) {
DynamicObject dynamicObject = collections.get(i);
String productNumber = dynamicObject.getString("qeug_productentry.number");
@ -265,39 +272,70 @@ public class ExportTemplateUtil {
// 从第5行开始填充数据
XSSFRow dataRow = sheet.createRow(i + 4);
// 获取列索引
int productNumberColumnIndex = findColumnIndex(sheet, "productentry_producttype.number");
int nameColumnIndex = findColumnIndex(sheet, "qeug_kmname");
int typeColumnIndex = findColumnIndex(sheet, "qeug_fl");
try {
// 获取列索引
int productNumberColumnIndex = findColumnIndex(sheet, "productentry_producttype.number");
int nameColumnIndex = findColumnIndex(sheet, "qeug_kmname");
int typeColumnIndex = findColumnIndex(sheet, "qeug_fl");
// 填充数据
XSSFCell productNumberCell = dataRow.createCell(productNumberColumnIndex);
productNumberCell.setCellValue(productNumber);
XSSFCellStyle productNumberStyle = createCellStyle(workbook);
productNumberCell.setCellStyle(productNumberStyle);
// 填充数据
createCell(dataRow, productNumberColumnIndex, productNumber, workbook);
createCell(dataRow, nameColumnIndex, name, workbook);
createCell(dataRow, typeColumnIndex, type, workbook);
XSSFCell nameCell = dataRow.createCell(nameColumnIndex);
nameCell.setCellValue(name);
XSSFCellStyle nameStyle = createCellStyle(workbook);
nameCell.setCellStyle(nameStyle);
XSSFCell typeCell = dataRow.createCell(typeColumnIndex);
typeCell.setCellValue(type);
XSSFCellStyle typeStyle = createCellStyle(workbook);
typeCell.setCellStyle(typeStyle);
} catch (Exception e) {
message.append("" + (i + 4) + " 行数据填充失败: " + e.getMessage() + "\n");
e.printStackTrace();
}
}
}
// 上传Excel文件并获取下载路径
String uploadedFilePath = uploadExcel(workbook);
return RequestContext.get().getClientFullContextPath() + "/attachment/download.do?path=" + uploadedFilePath;
/**
* 辅助方法根据列名查找列索引
*/
private static int findColumnIndex(XSSFSheet sheet, String columnName) {
XSSFRow headerRow = sheet.getRow(2);
for (int colIndex = 0; colIndex < headerRow.getPhysicalNumberOfCells(); colIndex++) {
XSSFCell cell = headerRow.getCell(colIndex);
if (cell != null && columnName.equals(cell.getStringCellValue())) {
return colIndex;
}
}
return -1;
}
/**
* 创建统一的单元格样式
*/
private static XSSFCellStyle createCellStyle(XSSFWorkbook workbook, String fontName, short fontHeight, short fontColor, boolean wrapText) {
XSSFCellStyle style = workbook.createCellStyle();
XSSFFont font = workbook.createFont();
font.setFontName(fontName);
font.setFontHeightInPoints(fontHeight);
font.setColor(fontColor);
style.setFont(font);
style.setAlignment(HorizontalAlignment.CENTER);
style.setVerticalAlignment(VerticalAlignment.CENTER);
style.setWrapText(wrapText);
return style;
}
/**
* 创建单元格并设置值和样式
*/
private static void createCell(XSSFRow row, int colIndex, String value, XSSFWorkbook workbook) {
XSSFCell cell = row.createCell(colIndex);
cell.setCellValue(value);
cell.setCellStyle(createCellStyle(workbook, "宋体", (short) 11, IndexedColors.BLACK.getIndex(), false));
}
/**
* 上传Excel文件并返回路径
*/
private static String uploadExcel(XSSFWorkbook workbook) {
private static String uploadExcel(XSSFWorkbook workbook, String templateName) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy_MM_dd_HH_mm_ss");
String fileName = "下载模板_" + sdf.format(new Date()) + ".xlsx";
String fileName = templateName + sdf.format(new Date()) + ".xlsx";
String pathName = "/offices/" + fileName;
try {
OutputStream outputStream = new ByteArrayOutputStream();
@ -311,70 +349,65 @@ public class ExportTemplateUtil {
}
}
/**
* 解析输出流为输入流
*/
public static ByteArrayInputStream parse(final OutputStream out) throws Exception {
ByteArrayOutputStream outputStream = (ByteArrayOutputStream) out;
return new ByteArrayInputStream(outputStream.toByteArray());
}
/**
* 读取系统模板参数
*
* @param templateObj 系统模板分录
* @param productView 产品构成视图模型
* @param areaView 面积数据分录视图模型
* @param areaView 面积数据分录视图模型
* @return templateList
*/
public static List<Template> readSysTemplate(DynamicObject templateObj,Control productView, Control areaView){
List<Template> templateList =new ArrayList<>();
public static List<Template> readSysTemplate(DynamicObject templateObj, Control productView, Control areaView, StringBuilder message) {
List<Template> templateList = new ArrayList<>();
DynamicObjectCollection entry = templateObj.getDynamicObjectCollection("treeentryentity");
if (null!=entry&&entry.size()!=0){
for (int i = 0; i < entry.size(); i++) {
DynamicObject dynamicObject = entry.get(i);
if (dynamicObject.getBoolean("isimport")){
Template template = new Template();
if (entry != null && !entry.isEmpty()) {
entry.forEach(dynamicObject -> {
if (dynamicObject.getBoolean("isimport")) {
String entityNumber = dynamicObject.getString("entitynumber");
if (entityNumber!=null){
LocaleString name = productView.getModel().getProperty(entityNumber).getDisplayName();
if (name==null){
name = areaView.getModel().getProperty(entityNumber).getDisplayName();
if (entityNumber != null) {
// 优化避免多次获取模型属性
LocaleString name = null;
try {
name = productView.getModel().getProperty(entityNumber) != null
? productView.getModel().getProperty(entityNumber).getDisplayName()
: areaView.getModel().getProperty(entityNumber) != null
? areaView.getModel().getProperty(entityNumber).getDisplayName()
: null;
} catch (Exception ex) {
// 捕获可能的异常并记录错误信息
message.append("获取实体号 [").append(entityNumber).append("] 的显示名称失败: ").append(ex.getMessage()).append("\n");
}
String localeValue_zh_cn = name.getLocaleValue_zh_CN();
template.setName(localeValue_zh_cn);
template.setNumber(entityNumber);
template.setMustInput(dynamicObject.getBoolean("ismustinput"));
template.setImport(dynamicObject.getBoolean("isimport"));
template.setImportProp(dynamicObject.getString("importprop"));
templateList.add(template);
if (name != null) {
String localeValue_zh_cn = name.getLocaleValue_zh_CN();
Template template = new Template();
template.setName(localeValue_zh_cn);
template.setNumber(entityNumber);
template.setMustInput(dynamicObject.getBoolean("ismustinput"));
template.setImport(dynamicObject.getBoolean("isimport"));
template.setImportProp(dynamicObject.getString("importprop"));
templateList.add(template);
} else {
// 如果 name null记录相关错误信息
message.append("无法找到实体号 [").append(entityNumber).append("] 的显示名称\n");
}
} else {
message.append("实体号为空,无法处理该条目\n");
}
}
}
});
} else {
message.append("模板中的 treeentryentity 为空或不存在\n");
}
return templateList;
}
// 辅助方法根据列名查找列索引
private static int findColumnIndex(XSSFSheet sheet, String columnName) {
XSSFRow headerRow = sheet.getRow(2);
for (int colIndex = 0; colIndex < headerRow.getPhysicalNumberOfCells(); colIndex++) {
XSSFCell cell = headerRow.getCell(colIndex);
if (cell != null && columnName.equals(cell.getStringCellValue())) {
return colIndex;
}
}
return -1;
}
// 辅助方法创建统一的单元格样式
private static XSSFCellStyle createCellStyle(XSSFWorkbook workbook) {
XSSFCellStyle style = workbook.createCellStyle();
XSSFFont font = workbook.createFont();
font.setFontName("宋体");
font.setFontHeightInPoints((short) 11);
style.setFont(font);
style.setAlignment(HorizontalAlignment.CENTER);
style.setVerticalAlignment(VerticalAlignment.CENTER);
return style;
}
}