forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1022 B
38 lines
1022 B
6 years ago
|
package com.alibaba.excel.write.handler;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
|
||
|
import org.apache.poi.ss.usermodel.IndexedColors;
|
||
|
|
||
|
import com.alibaba.excel.metadata.CellStyle;
|
||
|
import com.alibaba.excel.metadata.Font;
|
||
|
import com.alibaba.excel.write.style.RowCellStyleStrategy;
|
||
|
|
||
|
/**
|
||
6 years ago
|
* Load default handler
|
||
6 years ago
|
*
|
||
|
* @author zhuangjiaju
|
||
|
*/
|
||
6 years ago
|
public class DefaultWriteHandlerLoader {
|
||
6 years ago
|
|
||
|
/**
|
||
|
* Load default handler
|
||
|
*
|
||
|
* @return
|
||
|
*/
|
||
|
public static List<WriteHandler> loadDefaultHandler() {
|
||
|
List<WriteHandler> handlerList = new ArrayList<WriteHandler>();
|
||
|
CellStyle headCellStyle = new CellStyle();
|
||
|
Font font = new Font();
|
||
|
headCellStyle.setFont(font);
|
||
|
font.setFontName("宋体");
|
||
6 years ago
|
font.setFontHeightInPoints((short)14);
|
||
6 years ago
|
font.setBold(true);
|
||
|
headCellStyle.setIndexedColors(IndexedColors.GREY_25_PERCENT);
|
||
|
handlerList.add(new RowCellStyleStrategy(headCellStyle, new ArrayList<CellStyle>()));
|
||
|
return handlerList;
|
||
|
}
|
||
|
|
||
|
}
|