EasyExcel单独处理列的样式

public class CustomVerticalCellStyleStrategy extends AbstractVerticalCellStyleStrategy {

    // 重写定义内容部分样式的方法
    @Override
    protected WriteCellStyle contentCellStyle(CellWriteHandlerContext context) {
        //处理第一列为靠左的样式
        if (context.getColumnIndex()==0){
            WriteCellStyle writeCellStyle = context.getCellDataList().get(0).getWriteCellStyle();
            writeCellStyle.setHorizontalAlignment(HorizontalAlignment.LEFT);
        }
        return null;
    }
}

你可能感兴趣的:(java,前端,html)