使用autoSizeColumn时,列隐藏在XSSF Apache POI中

时间:2014-01-03 13:38:14

标签: java apache-poi xlsx xssf

我正在尝试使用Apache POI XSSF将表导出为xlsx。该表有5列。

第一行有标题栏合并5列。在第二行,表格的5个标题。剩余的行是数据。我想将列的宽度设置为每个标题块的最大宽度。

我添加了一个条件并在添加标题值时尝试了mySheet.autoSizeColumn(colnum),以便列的宽度与标题数据相同。但是当我这样做时,所有列都隐藏在导出的xlsx工作表上。

这些是我使用的样式元素:

public CellStyle createHeadingStyle(XSSFWorkbook myWorkBook){

      XSSFCellStyle style = myWorkBook.createCellStyle();
      Font fontHeader = myWorkBook.createFont();
      fontHeader.setBoldweight((short)4);
      fontHeader.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
      fontHeader.setFontHeightInPoints((short)8);
      fontHeader.setFontName("GE Inspira Pitch");
      style.setFont(fontHeader);
      style.setAlignment(CellStyle.ALIGN_CENTER); 
      style.setHidden(false);

      //HSSFPalette palette = myWorkBook.getCustomPalette();
      //palette.setColorAtIndex(new Byte((byte) 41), new Byte((byte) 153), new Byte((byte) 204), new Byte((byte) 255));

      style.setFillForegroundColor(new XSSFColor(new java.awt.Color(41,153,204,255)));
      style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);  
    return style;
}

public CellStyle createTitleStyle(XSSFWorkbook myWorkBook){

    CellStyle style = myWorkBook.createCellStyle();
    Font fontHeader = myWorkBook.createFont();
    fontHeader.setBoldweight((short)5);
    fontHeader.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
    fontHeader.setFontHeightInPoints((short)10);
    fontHeader.setColor(HSSFColor.RED.index);
    fontHeader.setFontName("GE Inspira Pitch"); 
    style.setFont(fontHeader);
    style.setAlignment(CellStyle.ALIGN_CENTER); 
    style.setWrapText(true);
    style.setHidden(false);
    return style;
}
public CellStyle createDataStyle(XSSFWorkbook myWorkBook){

     CellStyle style = myWorkBook.createCellStyle();
     Font font = myWorkBook.createFont();
     font.setFontName("GE Inspira Pitch");
     font.setFontHeightInPoints((short)10);
     style.setFont(font);
     style.setAlignment(CellStyle.ALIGN_RIGHT);
     style.setHidden(false);
     return style;
}

这是用于创建xlsx的代码块:

titleLenght = 2;
cell1.setCellValue(excelTitle);
cell1.setCellStyle(titleCellStyle);
boolean headerStyle = true;
for (int j = 0; j < list.size(); j++) {
    Row row = mySheet.createRow(j+2+titleLength);
    List<String> l2= list.get(j);
    for(int k=0; k<l2.size(); k++)
    {
        Cell cell = row.createCell(k);
        cell.setCellValue(l2.get(k));
        if(headerStyle){
mySheet.autoSizeColumn(k);
cell.setCellStyle(headingCellStyle);
        }else{
cell.setCellStyle(dataCellStyle);
        }
    } 
    headerStyle = false;
}

1 个答案:

答案 0 :(得分:1)

我对代码进行了以下更改,但它确实有效。

titleLenght = 2;
cell1.setCellValue(excelTitle);

boolean headerStyle = true;
for (int j = 0; j < list.size(); j++) {
    Row row = mySheet.createRow(j+2+titleLength);
    List<String> l2= list.get(j);
    for(int k=0; k<l2.size(); k++)
    {
        Cell cell = row.createCell(k);
        cell.setCellValue(l2.get(k));
        if(headerStyle){
            **cell.setCellStyle(headingCellStyle);
            int origColWidth = mySheet.getColumnWidth(k);
            mySheet.autoSizeColumn(k);
            // Making sure col width is not going less than the header width
            if (origColWidth > mySheet.getColumnWidth(k)) {
                mySheet.setColumnWidth(k, origColWidth);
            }**
        }else{
            cell.setCellStyle(dataCellStyle);
        }
    }   
    headerStyle = false;
}


// Set title style element at last so the first column will not take
// width of title field
cell1.setCellStyle(titleCellStyle);

在我之前的代码中,对于标题,autoSizeColumn(K)返回零,因为没有与之关联的样式。具体来说,没有分配字体,因为我在设置样式之前设置了autoSizeColumn(k)。因此宽度返回为零。这使得所有列都被隐藏了。

现在我添加了一个条件,宽度在任何情况下都不会变为零。我已经将标题样式移到了结尾,这样它就不会影响第一个标题列的宽度。

结论:

  1. 创建单元格
  2. 设置值和设置样式
  3. 设置autoColumnSize或计算列宽