mirror of https://github.com/alibaba/easyexcel
Jiaju Zhuang
3 years ago
20 changed files with 836 additions and 140 deletions
@ -0,0 +1,29 @@ |
|||||||
|
package com.alibaba.easyexcel.test.core.fill.style; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.write.style.ContentFontStyle; |
||||||
|
import com.alibaba.excel.annotation.write.style.ContentStyle; |
||||||
|
import com.alibaba.excel.enums.BooleanEnum; |
||||||
|
import com.alibaba.excel.enums.poi.FillPatternTypeEnum; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Jiaju Zhuang |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class FillStyleAnnotatedData { |
||||||
|
@ContentStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 13) |
||||||
|
@ContentFontStyle(bold = BooleanEnum.TRUE, color = 19) |
||||||
|
private String name; |
||||||
|
@ContentStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 10) |
||||||
|
@ContentFontStyle(bold = BooleanEnum.TRUE, color = 16) |
||||||
|
private Double number; |
||||||
|
@ContentStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 17) |
||||||
|
@ContentFontStyle(bold = BooleanEnum.TRUE, color = 18) |
||||||
|
private Date date; |
||||||
|
@ContentStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 12) |
||||||
|
@ContentFontStyle(bold = BooleanEnum.TRUE, color = 18) |
||||||
|
private String empty; |
||||||
|
} |
@ -0,0 +1,325 @@ |
|||||||
|
package com.alibaba.easyexcel.test.core.fill.style; |
||||||
|
|
||||||
|
import java.io.File; |
||||||
|
import java.io.FileInputStream; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
import com.alibaba.easyexcel.test.core.fill.FillData; |
||||||
|
import com.alibaba.easyexcel.test.util.TestFileUtil; |
||||||
|
import com.alibaba.excel.EasyExcel; |
||||||
|
import com.alibaba.excel.metadata.Head; |
||||||
|
import com.alibaba.excel.util.DateUtils; |
||||||
|
import com.alibaba.excel.util.ListUtils; |
||||||
|
import com.alibaba.excel.write.handler.context.CellWriteHandlerContext; |
||||||
|
import com.alibaba.excel.write.metadata.style.WriteCellStyle; |
||||||
|
import com.alibaba.excel.write.metadata.style.WriteFont; |
||||||
|
import com.alibaba.excel.write.style.AbstractVerticalCellStyleStrategy; |
||||||
|
|
||||||
|
import org.apache.poi.hssf.usermodel.HSSFCell; |
||||||
|
import org.apache.poi.hssf.usermodel.HSSFRow; |
||||||
|
import org.apache.poi.hssf.usermodel.HSSFSheet; |
||||||
|
import org.apache.poi.hssf.usermodel.HSSFWorkbook; |
||||||
|
import org.apache.poi.ss.usermodel.FillPatternType; |
||||||
|
import org.apache.poi.ss.usermodel.IndexedColors; |
||||||
|
import org.apache.poi.xssf.usermodel.XSSFCell; |
||||||
|
import org.apache.poi.xssf.usermodel.XSSFRow; |
||||||
|
import org.apache.poi.xssf.usermodel.XSSFSheet; |
||||||
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook; |
||||||
|
import org.junit.Assert; |
||||||
|
import org.junit.BeforeClass; |
||||||
|
import org.junit.FixMethodOrder; |
||||||
|
import org.junit.Test; |
||||||
|
import org.junit.runners.MethodSorters; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Jiaju Zhuang |
||||||
|
*/ |
||||||
|
@FixMethodOrder(MethodSorters.NAME_ASCENDING) |
||||||
|
public class FillStyleAnnotatedTest { |
||||||
|
|
||||||
|
private static File FillStyleAnnotated07; |
||||||
|
private static File FillStyleAnnotated03; |
||||||
|
private static File fileStyleTemplate07; |
||||||
|
private static File fileStyleTemplate03; |
||||||
|
|
||||||
|
@BeforeClass |
||||||
|
public static void init() { |
||||||
|
FillStyleAnnotated07 = TestFileUtil.createNewFile("FillStyleAnnotated07.xlsx"); |
||||||
|
FillStyleAnnotated03 = TestFileUtil.createNewFile("FillStyleAnnotated03.xls"); |
||||||
|
fileStyleTemplate07 = TestFileUtil.readFile("fill" + File.separator + "style.xlsx"); |
||||||
|
fileStyleTemplate03 = TestFileUtil.readFile("fill" + File.separator + "style.xls"); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void t01Fill07() throws Exception { |
||||||
|
fill(FillStyleAnnotated07, fileStyleTemplate07); |
||||||
|
XSSFWorkbook workbook = new XSSFWorkbook(new FileInputStream(FillStyleAnnotated07)); |
||||||
|
XSSFSheet sheet = workbook.getSheetAt(0); |
||||||
|
t01Fill07check(sheet.getRow(1)); |
||||||
|
t01Fill07check(sheet.getRow(2)); |
||||||
|
} |
||||||
|
|
||||||
|
private void t01Fill07check(XSSFRow row) { |
||||||
|
XSSFCell cell0 = row.getCell(0); |
||||||
|
Assert.assertEquals("张三", cell0.getStringCellValue()); |
||||||
|
Assert.assertEquals(49, cell0.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FF00B050", cell0.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF7030A0", cell0.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell0.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell1 = row.getCell(1); |
||||||
|
Assert.assertEquals("5", cell1.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell1.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FF92D050", cell1.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF4BACC6", cell1.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertFalse(cell1.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell2 = row.getCell(2); |
||||||
|
Assert.assertEquals("2020-01-01 01:01:01", DateUtils.format(cell2.getDateCellValue(), "yyyy-MM-dd HH:mm:ss")); |
||||||
|
Assert.assertEquals("yyyy-MM-dd HH:mm:ss", cell2.getCellStyle().getDataFormatString()); |
||||||
|
Assert.assertEquals("FFFFC000", cell2.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FFC0504D", cell2.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell2.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell3 = row.getCell(3); |
||||||
|
Assert.assertEquals("张三今年5岁了", cell3.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell3.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF0000", cell3.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FFEEECE1", cell3.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell3.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell4 = row.getCell(4); |
||||||
|
Assert.assertEquals("{.name}忽略,张三", cell4.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell4.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFC00000", cell4.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF000000", cell4.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertFalse(cell4.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell5 = row.getCell(5); |
||||||
|
Assert.assertEquals("空", cell5.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell5.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFF79646", cell5.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF8064A2", cell5.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertFalse(cell5.getCellStyle().getFont().getBold()); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void t02Fill03() throws Exception { |
||||||
|
fill(FillStyleAnnotated03, fileStyleTemplate03); |
||||||
|
HSSFWorkbook workbook = new HSSFWorkbook(new FileInputStream(FillStyleAnnotated03)); |
||||||
|
HSSFSheet sheet = workbook.getSheetAt(0); |
||||||
|
t02Fill03check(workbook, sheet.getRow(1)); |
||||||
|
t02Fill03check(workbook, sheet.getRow(2)); |
||||||
|
} |
||||||
|
|
||||||
|
private void t02Fill03check(HSSFWorkbook workbook, HSSFRow row) { |
||||||
|
HSSFCell cell0 = row.getCell(0); |
||||||
|
Assert.assertEquals("张三", cell0.getStringCellValue()); |
||||||
|
Assert.assertEquals(49, cell0.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("0:8080:0", cell0.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("8080:0:8080", cell0.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell0.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell1 = row.getCell(1); |
||||||
|
Assert.assertEquals("5", cell1.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell1.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("9999:CCCC:0", cell1.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("0:8080:8080", cell1.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertFalse(cell1.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell2 = row.getCell(2); |
||||||
|
Assert.assertEquals("2020-01-01 01:01:01", DateUtils.format(cell2.getDateCellValue(), "yyyy-MM-dd HH:mm:ss")); |
||||||
|
Assert.assertEquals("yyyy-MM-dd HH:mm:ss", cell2.getCellStyle().getDataFormatString()); |
||||||
|
Assert.assertEquals("FFFF:CCCC:0", cell2.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("8080:0:0", cell2.getCellStyle().getFont(workbook).getHSSFColor(workbook).getHexString()); |
||||||
|
Assert.assertTrue(cell2.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell3 = row.getCell(3); |
||||||
|
Assert.assertEquals("张三今年5岁了", cell3.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell3.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF:0:0", cell3.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("FFFF:FFFF:9999", cell3.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell3.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell4 = row.getCell(4); |
||||||
|
Assert.assertEquals("{.name}忽略,张三", cell4.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell4.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("9999:3333:0", cell4.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("3333:3333:3333", cell4.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertFalse(cell4.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell5 = row.getCell(5); |
||||||
|
Assert.assertEquals("空", cell5.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell5.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("9999:3333:0", cell5.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("CCCC:9999:FFFF", cell5.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertFalse(cell5.getCellStyle().getFont(workbook).getBold()); |
||||||
|
} |
||||||
|
|
||||||
|
private void fill(File file, File template) throws Exception { |
||||||
|
EasyExcel.write(file, FillStyleAnnotatedData.class).withTemplate(template).sheet().doFill(data()); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
private void t11FillStyleHandler07check(XSSFRow row) { |
||||||
|
XSSFCell cell0 = row.getCell(0); |
||||||
|
Assert.assertEquals("张三", cell0.getStringCellValue()); |
||||||
|
Assert.assertEquals(49, cell0.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFFFF00", cell0.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF808000", cell0.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell0.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell1 = row.getCell(1); |
||||||
|
Assert.assertEquals("5", cell1.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell1.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF0000", cell1.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF800000", cell1.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell1.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell2 = row.getCell(2); |
||||||
|
Assert.assertEquals("2020-01-01 01:01:01", DateUtils.format(cell2.getDateCellValue(), "yyyy-MM-dd HH:mm:ss")); |
||||||
|
Assert.assertEquals("yyyy-MM-dd HH:mm:ss", cell2.getCellStyle().getDataFormatString()); |
||||||
|
Assert.assertEquals("FF008000", cell2.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF003300", cell2.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell2.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell3 = row.getCell(3); |
||||||
|
Assert.assertEquals("张三今年5岁了", cell3.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell3.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FF0000FF", cell3.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF000080", cell3.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell3.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell4 = row.getCell(4); |
||||||
|
Assert.assertEquals("{.name}忽略,张三", cell4.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell4.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFFFF00", cell4.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF808000", cell4.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell4.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell5 = row.getCell(5); |
||||||
|
Assert.assertEquals("空", cell5.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell5.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FF008080", cell5.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF003366", cell5.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell5.getCellStyle().getFont().getBold()); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
private void t12FillStyleHandler03check(HSSFWorkbook workbook, HSSFRow row) { |
||||||
|
HSSFCell cell0 = row.getCell(0); |
||||||
|
Assert.assertEquals("张三", cell0.getStringCellValue()); |
||||||
|
Assert.assertEquals(49, cell0.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF:FFFF:0", cell0.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("8080:8080:0", cell0.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell0.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell1 = row.getCell(1); |
||||||
|
Assert.assertEquals("5", cell1.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell1.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF:0:0", cell1.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("8080:0:0", cell1.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell1.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell2 = row.getCell(2); |
||||||
|
Assert.assertEquals("2020-01-01 01:01:01", DateUtils.format(cell2.getDateCellValue(), "yyyy-MM-dd HH:mm:ss")); |
||||||
|
Assert.assertEquals("yyyy-MM-dd HH:mm:ss", cell2.getCellStyle().getDataFormatString()); |
||||||
|
Assert.assertEquals("0:8080:0", cell2.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("0:3333:0", cell2.getCellStyle().getFont(workbook).getHSSFColor(workbook).getHexString()); |
||||||
|
Assert.assertTrue(cell2.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell3 = row.getCell(3); |
||||||
|
Assert.assertEquals("张三今年5岁了", cell3.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell3.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("0:0:FFFF", cell3.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("0:0:8080", cell3.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell3.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell4 = row.getCell(4); |
||||||
|
Assert.assertEquals("{.name}忽略,张三", cell4.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell4.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF:FFFF:0", cell4.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("8080:8080:0", cell4.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell4.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell5 = row.getCell(5); |
||||||
|
Assert.assertEquals("空", cell5.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell5.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("0:8080:8080", cell5.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("0:3333:6666", cell5.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell5.getCellStyle().getFont(workbook).getBold()); |
||||||
|
} |
||||||
|
|
||||||
|
private void fillStyleHandler(File file, File template) throws Exception { |
||||||
|
EasyExcel.write(file, FillData.class).withTemplate(template).sheet() |
||||||
|
.registerWriteHandler(new AbstractVerticalCellStyleStrategy() { |
||||||
|
|
||||||
|
@Override |
||||||
|
protected WriteCellStyle contentCellStyle(CellWriteHandlerContext context) { |
||||||
|
WriteCellStyle writeCellStyle = new WriteCellStyle(); |
||||||
|
WriteFont writeFont = new WriteFont(); |
||||||
|
writeCellStyle.setWriteFont(writeFont); |
||||||
|
writeCellStyle.setFillPatternType(FillPatternType.SOLID_FOREGROUND); |
||||||
|
writeFont.setBold(true); |
||||||
|
if (context.getColumnIndex() == 0) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.YELLOW.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_YELLOW.getIndex()); |
||||||
|
} |
||||||
|
if (context.getColumnIndex() == 1) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.RED.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_RED.getIndex()); |
||||||
|
} |
||||||
|
if (context.getColumnIndex() == 2) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.GREEN.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_GREEN.getIndex()); |
||||||
|
} |
||||||
|
if (context.getColumnIndex() == 3) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.BLUE.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_BLUE.getIndex()); |
||||||
|
} |
||||||
|
if (context.getColumnIndex() == 4) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.YELLOW.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_YELLOW.getIndex()); |
||||||
|
} |
||||||
|
if (context.getColumnIndex() == 5) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.TEAL.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_TEAL.getIndex()); |
||||||
|
} |
||||||
|
return writeCellStyle; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected WriteCellStyle headCellStyle(Head head) { |
||||||
|
return null; |
||||||
|
} |
||||||
|
|
||||||
|
}) |
||||||
|
.doFill(data()); |
||||||
|
} |
||||||
|
|
||||||
|
private List<FillStyleAnnotatedData> data() throws Exception { |
||||||
|
List<FillStyleAnnotatedData> list = ListUtils.newArrayList(); |
||||||
|
for (int i = 0; i < 10; i++) { |
||||||
|
FillStyleAnnotatedData fillData = new FillStyleAnnotatedData(); |
||||||
|
list.add(fillData); |
||||||
|
fillData.setName("张三"); |
||||||
|
fillData.setNumber(5.2); |
||||||
|
fillData.setDate(DateUtils.parseDate("2020-01-01 01:01:01")); |
||||||
|
if (i == 5) { |
||||||
|
fillData.setName(null); |
||||||
|
} |
||||||
|
} |
||||||
|
return list; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,16 @@ |
|||||||
|
package com.alibaba.easyexcel.test.core.fill.style; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Jiaju Zhuang |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class FillStyleData { |
||||||
|
private String name; |
||||||
|
private Double number; |
||||||
|
private Date date; |
||||||
|
private String empty; |
||||||
|
} |
@ -0,0 +1,346 @@ |
|||||||
|
package com.alibaba.easyexcel.test.core.fill.style; |
||||||
|
|
||||||
|
import java.io.File; |
||||||
|
import java.io.FileInputStream; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
import com.alibaba.easyexcel.test.core.fill.FillData; |
||||||
|
import com.alibaba.easyexcel.test.util.TestFileUtil; |
||||||
|
import com.alibaba.excel.EasyExcel; |
||||||
|
import com.alibaba.excel.metadata.Head; |
||||||
|
import com.alibaba.excel.util.DateUtils; |
||||||
|
import com.alibaba.excel.util.ListUtils; |
||||||
|
import com.alibaba.excel.write.handler.context.CellWriteHandlerContext; |
||||||
|
import com.alibaba.excel.write.metadata.style.WriteCellStyle; |
||||||
|
import com.alibaba.excel.write.metadata.style.WriteFont; |
||||||
|
import com.alibaba.excel.write.style.AbstractVerticalCellStyleStrategy; |
||||||
|
|
||||||
|
import org.apache.poi.hssf.usermodel.HSSFCell; |
||||||
|
import org.apache.poi.hssf.usermodel.HSSFRow; |
||||||
|
import org.apache.poi.hssf.usermodel.HSSFSheet; |
||||||
|
import org.apache.poi.hssf.usermodel.HSSFWorkbook; |
||||||
|
import org.apache.poi.ss.usermodel.FillPatternType; |
||||||
|
import org.apache.poi.ss.usermodel.IndexedColors; |
||||||
|
import org.apache.poi.xssf.usermodel.XSSFCell; |
||||||
|
import org.apache.poi.xssf.usermodel.XSSFRow; |
||||||
|
import org.apache.poi.xssf.usermodel.XSSFSheet; |
||||||
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook; |
||||||
|
import org.junit.Assert; |
||||||
|
import org.junit.BeforeClass; |
||||||
|
import org.junit.FixMethodOrder; |
||||||
|
import org.junit.Test; |
||||||
|
import org.junit.runners.MethodSorters; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Jiaju Zhuang |
||||||
|
*/ |
||||||
|
@FixMethodOrder(MethodSorters.NAME_ASCENDING) |
||||||
|
public class FillStyleDataTest { |
||||||
|
|
||||||
|
private static File fileStyle07; |
||||||
|
private static File fileStyle03; |
||||||
|
private static File fileStyleHandler07; |
||||||
|
private static File fileStyleHandler03; |
||||||
|
private static File fileStyleTemplate07; |
||||||
|
private static File fileStyleTemplate03; |
||||||
|
|
||||||
|
@BeforeClass |
||||||
|
public static void init() { |
||||||
|
fileStyle07 = TestFileUtil.createNewFile("fileStyle07.xlsx"); |
||||||
|
fileStyle03 = TestFileUtil.createNewFile("fileStyle03.xls"); |
||||||
|
fileStyleHandler07 = TestFileUtil.createNewFile("fileStyleHandler07.xlsx"); |
||||||
|
fileStyleHandler03 = TestFileUtil.createNewFile("fileStyleHandler03.xls"); |
||||||
|
fileStyleTemplate07 = TestFileUtil.readFile("fill" + File.separator + "style.xlsx"); |
||||||
|
fileStyleTemplate03 = TestFileUtil.readFile("fill" + File.separator + "style.xls"); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void t01Fill07() throws Exception { |
||||||
|
fill(fileStyle07, fileStyleTemplate07); |
||||||
|
XSSFWorkbook workbook = new XSSFWorkbook(new FileInputStream(fileStyle07)); |
||||||
|
XSSFSheet sheet = workbook.getSheetAt(0); |
||||||
|
t01Fill07check(sheet.getRow(1)); |
||||||
|
t01Fill07check(sheet.getRow(2)); |
||||||
|
} |
||||||
|
|
||||||
|
private void t01Fill07check(XSSFRow row) { |
||||||
|
XSSFCell cell0 = row.getCell(0); |
||||||
|
Assert.assertEquals("张三", cell0.getStringCellValue()); |
||||||
|
Assert.assertEquals(49, cell0.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FF00B050", cell0.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF7030A0", cell0.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell0.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell1 = row.getCell(1); |
||||||
|
Assert.assertEquals("5", cell1.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell1.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FF92D050", cell1.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF4BACC6", cell1.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertFalse(cell1.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell2 = row.getCell(2); |
||||||
|
Assert.assertEquals("2020-01-01 01:01:01", DateUtils.format(cell2.getDateCellValue(), "yyyy-MM-dd HH:mm:ss")); |
||||||
|
Assert.assertEquals("yyyy-MM-dd HH:mm:ss", cell2.getCellStyle().getDataFormatString()); |
||||||
|
Assert.assertEquals("FFFFC000", cell2.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FFC0504D", cell2.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell2.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell3 = row.getCell(3); |
||||||
|
Assert.assertEquals("张三今年5岁了", cell3.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell3.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF0000", cell3.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FFEEECE1", cell3.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell3.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell4 = row.getCell(4); |
||||||
|
Assert.assertEquals("{.name}忽略,张三", cell4.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell4.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFC00000", cell4.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF000000", cell4.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertFalse(cell4.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell5 = row.getCell(5); |
||||||
|
Assert.assertEquals("空", cell5.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell5.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFF79646", cell5.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF8064A2", cell5.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertFalse(cell5.getCellStyle().getFont().getBold()); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void t02Fill03() throws Exception { |
||||||
|
fill(fileStyle03, fileStyleTemplate03); |
||||||
|
HSSFWorkbook workbook = new HSSFWorkbook(new FileInputStream(fileStyle03)); |
||||||
|
HSSFSheet sheet = workbook.getSheetAt(0); |
||||||
|
t02Fill03check(workbook, sheet.getRow(1)); |
||||||
|
t02Fill03check(workbook, sheet.getRow(2)); |
||||||
|
} |
||||||
|
|
||||||
|
private void t02Fill03check(HSSFWorkbook workbook, HSSFRow row) { |
||||||
|
HSSFCell cell0 = row.getCell(0); |
||||||
|
Assert.assertEquals("张三", cell0.getStringCellValue()); |
||||||
|
Assert.assertEquals(49, cell0.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("0:8080:0", cell0.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("8080:0:8080", cell0.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell0.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell1 = row.getCell(1); |
||||||
|
Assert.assertEquals("5", cell1.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell1.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("9999:CCCC:0", cell1.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("0:8080:8080", cell1.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertFalse(cell1.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell2 = row.getCell(2); |
||||||
|
Assert.assertEquals("2020-01-01 01:01:01", DateUtils.format(cell2.getDateCellValue(), "yyyy-MM-dd HH:mm:ss")); |
||||||
|
Assert.assertEquals("yyyy-MM-dd HH:mm:ss", cell2.getCellStyle().getDataFormatString()); |
||||||
|
Assert.assertEquals("FFFF:CCCC:0", cell2.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("8080:0:0", cell2.getCellStyle().getFont(workbook).getHSSFColor(workbook).getHexString()); |
||||||
|
Assert.assertTrue(cell2.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell3 = row.getCell(3); |
||||||
|
Assert.assertEquals("张三今年5岁了", cell3.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell3.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF:0:0", cell3.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("FFFF:FFFF:9999", cell3.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell3.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell4 = row.getCell(4); |
||||||
|
Assert.assertEquals("{.name}忽略,张三", cell4.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell4.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("9999:3333:0", cell4.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("3333:3333:3333", cell4.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertFalse(cell4.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell5 = row.getCell(5); |
||||||
|
Assert.assertEquals("空", cell5.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell5.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("9999:3333:0", cell5.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("CCCC:9999:FFFF", cell5.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertFalse(cell5.getCellStyle().getFont(workbook).getBold()); |
||||||
|
} |
||||||
|
|
||||||
|
private void fill(File file, File template) throws Exception { |
||||||
|
EasyExcel.write(file, FillData.class).withTemplate(template).sheet().doFill(data()); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void t11FillStyleHandler07() throws Exception { |
||||||
|
fillStyleHandler(fileStyleHandler07, fileStyleTemplate07); |
||||||
|
XSSFWorkbook workbook = new XSSFWorkbook(new FileInputStream(fileStyleHandler07)); |
||||||
|
XSSFSheet sheet = workbook.getSheetAt(0); |
||||||
|
t11FillStyleHandler07check(sheet.getRow(1)); |
||||||
|
t11FillStyleHandler07check(sheet.getRow(2)); |
||||||
|
} |
||||||
|
|
||||||
|
private void t11FillStyleHandler07check(XSSFRow row) { |
||||||
|
XSSFCell cell0 = row.getCell(0); |
||||||
|
Assert.assertEquals("张三", cell0.getStringCellValue()); |
||||||
|
Assert.assertEquals(49, cell0.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFFFF00", cell0.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF808000", cell0.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell0.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell1 = row.getCell(1); |
||||||
|
Assert.assertEquals("5", cell1.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell1.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF0000", cell1.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF800000", cell1.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell1.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell2 = row.getCell(2); |
||||||
|
Assert.assertEquals("2020-01-01 01:01:01", DateUtils.format(cell2.getDateCellValue(), "yyyy-MM-dd HH:mm:ss")); |
||||||
|
Assert.assertEquals("yyyy-MM-dd HH:mm:ss", cell2.getCellStyle().getDataFormatString()); |
||||||
|
Assert.assertEquals("FF008000", cell2.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF003300", cell2.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell2.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell3 = row.getCell(3); |
||||||
|
Assert.assertEquals("张三今年5岁了", cell3.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell3.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FF0000FF", cell3.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF000080", cell3.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell3.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell4 = row.getCell(4); |
||||||
|
Assert.assertEquals("{.name}忽略,张三", cell4.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell4.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFFFF00", cell4.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF808000", cell4.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell4.getCellStyle().getFont().getBold()); |
||||||
|
|
||||||
|
XSSFCell cell5 = row.getCell(5); |
||||||
|
Assert.assertEquals("空", cell5.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell5.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FF008080", cell5.getCellStyle().getFillForegroundColorColor().getARGBHex()); |
||||||
|
Assert.assertEquals("FF003366", cell5.getCellStyle().getFont().getXSSFColor().getARGBHex()); |
||||||
|
Assert.assertTrue(cell5.getCellStyle().getFont().getBold()); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@Test |
||||||
|
public void t12FillStyleHandler03() throws Exception { |
||||||
|
fillStyleHandler(fileStyleHandler03, fileStyleTemplate03); |
||||||
|
HSSFWorkbook workbook = new HSSFWorkbook(new FileInputStream(fileStyleHandler03)); |
||||||
|
HSSFSheet sheet = workbook.getSheetAt(0); |
||||||
|
t12FillStyleHandler03check(workbook, sheet.getRow(1)); |
||||||
|
t12FillStyleHandler03check(workbook, sheet.getRow(2)); |
||||||
|
} |
||||||
|
|
||||||
|
private void t12FillStyleHandler03check(HSSFWorkbook workbook, HSSFRow row) { |
||||||
|
HSSFCell cell0 = row.getCell(0); |
||||||
|
Assert.assertEquals("张三", cell0.getStringCellValue()); |
||||||
|
Assert.assertEquals(49, cell0.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF:FFFF:0", cell0.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("8080:8080:0", cell0.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell0.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell1 = row.getCell(1); |
||||||
|
Assert.assertEquals("5", cell1.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell1.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF:0:0", cell1.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("8080:0:0", cell1.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell1.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell2 = row.getCell(2); |
||||||
|
Assert.assertEquals("2020-01-01 01:01:01", DateUtils.format(cell2.getDateCellValue(), "yyyy-MM-dd HH:mm:ss")); |
||||||
|
Assert.assertEquals("yyyy-MM-dd HH:mm:ss", cell2.getCellStyle().getDataFormatString()); |
||||||
|
Assert.assertEquals("0:8080:0", cell2.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("0:3333:0", cell2.getCellStyle().getFont(workbook).getHSSFColor(workbook).getHexString()); |
||||||
|
Assert.assertTrue(cell2.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell3 = row.getCell(3); |
||||||
|
Assert.assertEquals("张三今年5岁了", cell3.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell3.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("0:0:FFFF", cell3.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("0:0:8080", cell3.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell3.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell4 = row.getCell(4); |
||||||
|
Assert.assertEquals("{.name}忽略,张三", cell4.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell4.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("FFFF:FFFF:0", cell4.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("8080:8080:0", cell4.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell4.getCellStyle().getFont(workbook).getBold()); |
||||||
|
|
||||||
|
HSSFCell cell5 = row.getCell(5); |
||||||
|
Assert.assertEquals("空", cell5.getStringCellValue()); |
||||||
|
Assert.assertEquals(0, cell5.getCellStyle().getDataFormat()); |
||||||
|
Assert.assertEquals("0:8080:8080", cell5.getCellStyle().getFillForegroundColorColor().getHexString()); |
||||||
|
Assert.assertEquals("0:3333:6666", cell5.getCellStyle().getFont(workbook).getHSSFColor(workbook) |
||||||
|
.getHexString()); |
||||||
|
Assert.assertTrue(cell5.getCellStyle().getFont(workbook).getBold()); |
||||||
|
} |
||||||
|
|
||||||
|
private void fillStyleHandler(File file, File template) throws Exception { |
||||||
|
EasyExcel.write(file, FillData.class).withTemplate(template).sheet() |
||||||
|
.registerWriteHandler(new AbstractVerticalCellStyleStrategy() { |
||||||
|
|
||||||
|
@Override |
||||||
|
protected WriteCellStyle contentCellStyle(CellWriteHandlerContext context) { |
||||||
|
WriteCellStyle writeCellStyle = new WriteCellStyle(); |
||||||
|
WriteFont writeFont = new WriteFont(); |
||||||
|
writeCellStyle.setWriteFont(writeFont); |
||||||
|
writeCellStyle.setFillPatternType(FillPatternType.SOLID_FOREGROUND); |
||||||
|
writeFont.setBold(true); |
||||||
|
if (context.getColumnIndex() == 0) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.YELLOW.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_YELLOW.getIndex()); |
||||||
|
} |
||||||
|
if (context.getColumnIndex() == 1) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.RED.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_RED.getIndex()); |
||||||
|
} |
||||||
|
if (context.getColumnIndex() == 2) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.GREEN.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_GREEN.getIndex()); |
||||||
|
} |
||||||
|
if (context.getColumnIndex() == 3) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.BLUE.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_BLUE.getIndex()); |
||||||
|
} |
||||||
|
if (context.getColumnIndex() == 4) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.YELLOW.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_YELLOW.getIndex()); |
||||||
|
} |
||||||
|
if (context.getColumnIndex() == 5) { |
||||||
|
writeCellStyle.setFillForegroundColor(IndexedColors.TEAL.getIndex()); |
||||||
|
writeFont.setColor(IndexedColors.DARK_TEAL.getIndex()); |
||||||
|
} |
||||||
|
return writeCellStyle; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected WriteCellStyle headCellStyle(Head head) { |
||||||
|
return null; |
||||||
|
} |
||||||
|
|
||||||
|
}) |
||||||
|
.doFill(data()); |
||||||
|
} |
||||||
|
|
||||||
|
private List<FillStyleData> data() throws Exception { |
||||||
|
List<FillStyleData> list = ListUtils.newArrayList(); |
||||||
|
for (int i = 0; i < 10; i++) { |
||||||
|
FillStyleData fillData = new FillStyleData(); |
||||||
|
list.add(fillData); |
||||||
|
fillData.setName("张三"); |
||||||
|
fillData.setNumber(5.2); |
||||||
|
fillData.setDate(DateUtils.parseDate("2020-01-01 01:01:01")); |
||||||
|
if (i == 5) { |
||||||
|
fillData.setName(null); |
||||||
|
} |
||||||
|
} |
||||||
|
return list; |
||||||
|
} |
||||||
|
|
||||||
|
} |
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue