升级poi到最新版本5.5.1

This commit is contained in:
RuoYi
2026-08-18 14:32:10 +08:00
parent 18ff0701cc
commit 9e3fb55f46
2 changed files with 4 additions and 4 deletions

View File

@@ -26,7 +26,7 @@
<fastjson.version>2.0.64</fastjson.version> <fastjson.version>2.0.64</fastjson.version>
<oshi.version>7.4.4</oshi.version> <oshi.version>7.4.4</oshi.version>
<commons.io.version>2.22.0</commons.io.version> <commons.io.version>2.22.0</commons.io.version>
<poi.version>4.1.2</poi.version> <poi.version>5.5.1</poi.version>
<velocity.version>2.3</velocity.version> <velocity.version>2.3</velocity.version>
<jwt.version>0.9.1</jwt.version> <jwt.version>0.9.1</jwt.version>
<jaxb-api.version>2.3.1</jaxb-api.version> <jaxb-api.version>2.3.1</jaxb-api.version>

View File

@@ -1010,13 +1010,13 @@ public class ExcelUtil<T>
style.cloneStyleFrom(styles.get("data")); style.cloneStyleFrom(styles.get("data"));
style.setAlignment(HorizontalAlignment.CENTER); style.setAlignment(HorizontalAlignment.CENTER);
style.setVerticalAlignment(VerticalAlignment.CENTER); style.setVerticalAlignment(VerticalAlignment.CENTER);
style.setFillForegroundColor(excel.headerBackgroundColor().index); style.setFillForegroundColor(excel.headerBackgroundColor().getIndex());
style.setFillPattern(FillPatternType.SOLID_FOREGROUND); style.setFillPattern(FillPatternType.SOLID_FOREGROUND);
Font headerFont = wb.createFont(); Font headerFont = wb.createFont();
headerFont.setFontName("Arial"); headerFont.setFontName("Arial");
headerFont.setFontHeightInPoints((short) 10); headerFont.setFontHeightInPoints((short) 10);
headerFont.setBold(true); headerFont.setBold(true);
headerFont.setColor(excel.headerColor().index); headerFont.setColor(excel.headerColor().getIndex());
style.setFont(headerFont); style.setFont(headerFont);
// 设置表格头单元格文本形式 // 设置表格头单元格文本形式
DataFormat dataFormat = wb.createDataFormat(); DataFormat dataFormat = wb.createDataFormat();
@@ -1088,7 +1088,7 @@ public class ExcelUtil<T>
Font dataFont = wb.createFont(); Font dataFont = wb.createFont();
dataFont.setFontName("Arial"); dataFont.setFontName("Arial");
dataFont.setFontHeightInPoints((short) 10); dataFont.setFontHeightInPoints((short) 10);
dataFont.setColor(excel.color().index); dataFont.setColor(excel.color().getIndex());
style.setFont(dataFont); style.setFont(dataFont);
if (ColumnType.TEXT == excel.cellType()) if (ColumnType.TEXT == excel.cellType())
{ {