java根据poi创建excel且实现列宽⾃适应及样式⾃定义功能代码是伪代码,具体⽤什么数据类型来封装excel的数据可以根据实际情况选择。代码如下:
public class ExcelBuilder {
/**
根据参数,⽣成指定的HSSFWorkbook对象
@param wbData excel数据,格式为:sheet集合<row集合<cell集合<;单元格的值,String类型>>>
@param sheetNames 每个sheet的名字
@param titles 每列的表头,格式为:sheet的list:标题⾏字段名list
@return
*/
public static HSSFWorkbook createExcel(List<List<List<String>>> wbData, List<String> sheetNames, List<List<String>> titles){
HSSFWorkbook wb =new HSSFWorkbook();
//创建样式对象
HSSFCellStyle cellStyle =setStyleXlsx(wb);
for(int i =0; i < wbData.size(); i++){
//获取当前sheet数据
List<List<String>> sheetData = (i);
//String sheetName = 根据参数获取当前需要创造的sheet名;
String sheetName = (i);
//根据客户姓名创建sheet
HSSFSheet sheet = wb.createSheet(sheetName);
HSSFCell cell;
HSSFRow firstRow = ateRow(0);
//创建标题⾏
List<String> sheetTitles = (i);
for(int j =0; j < sheetTitles.size(); j++){
cell = ateCell(j);
cell.setCellStyle(cellStyle);
cell.(j));
}
//循环⼀次创建⼀⾏数据
for(int k =0; k < sheetData.size(); k++){
List<String> rowData = (k);
HSSFRow row = ateRow(k +1);
//循环⼀次创建⼀个单元格数据
for(int a =0; a < rowData.size(); a++){
cell = ateCell(a);
//设置每个单元格的样式
cell.setCellStyle(cellStyle);
//写⼊每个单元格的数据
cell.(a));
}
}
//当前sheet包含的列数
int columnNum = sheetTitles.size();
//设置当前sheet的列宽⾃适应
setSizeColum(sheet, columnNum);
}
return wb;
}
/**
* 设置样式
* @param book
* @return
*/
public static HSSFCellStyle setStyleXlsx(HSSFWorkbook book){
HSSFCellStyle cellStyle = ateCellStyle();
cellStyle.setAlignment(HorizontalAlignment.CENTER);// 居中
cellStyle.setVerticalAlignment(VerticalAlignment.CENTER);//垂直
cellStyle.setBorderBottom(BorderStyle.THIN);//下边框
cellStyle.setBorderLeft(BorderStyle.THIN);//左边框
cellStyle.setBorderTop(BorderStyle.THIN);//上边框
cellStyle.setBorderTop(BorderStyle.THIN);//上边框
cellStyle.setBorderRight(BorderStyle.THIN);//右边框
return cellStyle;
}
/
**
* 设置列宽⾃适应
* @param sheet 需要设置宽度⾃适应的sheet
* @param size 列数
*/
public static void setSizeColum(HSSFSheet sheet,int size){
for(int columnNum =0; columnNum < size; columnNum++){
int columnWidth = ColumnWidth(columnNum)/256;
for(int rowNum =0; rowNum <= LastRowNum(); rowNum++){
HSSFRow currentRow;
//当前⾏未被使⽤过
Row(rowNum)==null){
currentRow = ateRow(rowNum);
}else{
currentRow = Row(rowNum);
}
Cell(columnNum)!=null){
HSSFCell currentCell = Cell(columnNum);
//判断该列的数据类型是否为String类型
CellTypeEnum()== CellType.STRING){
//这⾥值转换String类型的数据的列,不然StringCellValue()会报错
int length = StringCellValue().getBytes(StandardCharsets.UTF_8).length;
if(columnWidth < length){
columnWidth = length;
}
}else{
//如果有的列的数据类型不是String类型需在此处补充;如果是⽇期类型或者其他就得这样先转成String再设置
//此处⽰例⽇期类型
//                        int length = DateCellValue().toString().getBytes(StandardCharsets.UTF_8).length;
//                        if (columnWidth < length){
//                            columnWidth = length;
//                        }
}
}
htmlborder}
sheet.setColumnWidth(columnNum, columnWidth *256);
}
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。