1

我正在使用 POI 3.9 和 jdk1.6.0_14。

我正在使用下面的代码来autoSizeColumn,但问题是生成excel时,它没有完全自动调整为列,当我在列之间双击时,当时我可以正确地看到自动调整大小的列。

for (int i = 0; i < workbook.getNumberOfSheets(); i++) {
            HSSFSheet thisSheet = workbook.getSheetAt(i);
            log.info("Last row : "+thisSheet.getLastRowNum());
            HSSFRow rowexcel = thisSheet.getRow(thisSheet.getLastRowNum());
            // Auto sizing columns
            for (short j = 0; j < rowexcel.getLastCellNum(); j++) {
                workbook.getSheetAt(i).autoSizeColumn(j);
            }
            // Freezing the top row
            workbook.getSheetAt(i).createFreezePane(0, 1);
        }

代替

HSSFRow rowexcel = thisSheet.getRow(thisSheet.getLastRowNum());

我也试过顶行

HSSFRow rowexcel = thisSheet.getRow(0);

但仍然没有解决办法。

4

1 回答 1

0

我遇到了您描述的确切问题,并且能够通过Cell上面一些评论中建议的样式显式设置字体来获得一些成功(也在此处)。

然而,我注意到的一件事是它autoSizeColumn仍然没有考虑所有单元格的宽度。特别是,我有一排单元格,它们基本上是描述每列数据的列标题。这些单元格已Font成功应用自定义,但在运行时仍未考虑列宽autoSizeColumn。存在差异,但我会假设它们无关紧要。例如,标题与列中的其余数据具有不同的单元格类型......并且单元格标题应用了不同的颜色以使它们脱颖而出。

话虽如此,尝试创建一个仅应用了一组非常基本的单元格样式的工作表,然后尝试从那里进行调整:

// Let's test with Arial, 10pt
Font testFont = workbook.createFont();
testFont.setFontName("Arial");
testFont.setFontHeightInPoints((short)10);

// We'll apply a very bare-bones style to our cells that just applies the Font
CellStyle testCellStyle = workbook.createCellStyle();
testCellStyle.setFont(testFont);

// Your real data cell creation would go here instead of my dummy code:
CreationHelper creationHelper = workbook.getCreationHelper();
Row testRow = thisSheet.createRow(0);
int currentColumn = 0;

Cell testCell = testRow.createCell(currentColumn++);
testCell.setCellStyle(testCellStyle);
testCell.setCellType(Cell.CELL_TYPE_STRING);
testCell.setCellValue(creationHelper.createRichTextString("Cell Data Goes Here");

testCell = testRow.createCell(currentColumn++);
testCell.setCellStyle(testCellStyle);
testCell.setCellType(Cell.CELL_TYPE_STRING);
testCell.setCellValue(creationHelper.createRichTextString("Your Real Code Won't Be This Redundant :)");

最后一个想法,如果autoSizeColumn仍然对列宽做不幸或不一致的事情,您可以添加一个安全网以确保列不会小于默认值:

int origColWidth = thisSheet.getColumnWidth(currentColumn);
thisSheet.autoSizeColumn(currentColumn);

// Reset to original width if resized width is smaller than default/original
if (origColWidth > thisSheet.getColumnWidth(currentColumn))
  thisSheet.setColumnWidth(currentColumn, origColWidth);
于 2013-06-26T21:13:53.360 回答