5

org.apache.poi 4.0删除了XSSFColor只使用java.awt.Color. 只需org.apache.poi 3.7编写即可轻松创建对象

Color inputColor = Color.RED;
XSSFColor test = new XSSFColor(inputColor);

但是,此构造函数在 4.0 中不再有效。https://poi.apache.org/apidocs/dev/org/apache/poi/xssf/usermodel/XSSFColor.html上的文档显示了其他几个构造函数,但理想情况下我想更改尽可能少的行。

所以,我的问题是,XSSFColorjava.awt.Color现在开始创建的最佳方法是什么(在 apache poi 4.0 中)?


根据评论中的要求,这是我的测试代码,使用建议style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null)); 使用 LibreOffice 6.1 打开它会产生错误(尝试修复,然后失败)。注释掉正常工作的 POI 3.7 版本。

@Test
public void testPOI40() throws FileNotFoundException, IOException {
    Workbook workbook = new XSSFWorkbook();
    XSSFSheet fSheet = (XSSFSheet) workbook.createSheet("new Sheet");
    XSSFRow hRow = fSheet.createRow((short) 0);
    //header
    String[] astrHeaders = new String[]{"Header1", "Header2", "Header3", "Header4"};
    for (int col = 0; col < astrHeaders.length; col++) {
        XSSFCell cell = hRow.createCell((short) col);
        XSSFCellStyle tempHeaderStyle = (XSSFCellStyle) workbook.createCellStyle();
        tempHeaderStyle.setFillForegroundColor(IndexedColors.GREY_25_PERCENT.getIndex());
        tempHeaderStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
        cell.setCellValue(astrHeaders[col]);
        cell.setCellStyle(tempHeaderStyle);
    }        
    //body
    Double[] astrContent = new Double[]{1.3, 0.3, 0.87, 1.0};     
    Color[] colors = new Color[] {Color.RED,Color.BLUE,Color.WHITE,Color.GREEN};        
    XSSFRow fRow = fSheet.createRow((short) 1);
    for (int iCol = 0; iCol < 4; iCol++) {
        XSSFCell cell = fRow.createCell((short) iCol);
        XSSFCellStyle tempBodyStyle = (XSSFCellStyle) workbook.createCellStyle();
        cell.setCellValue(astrContent[iCol]);
        //working with POI 3.17
        //tempBodyStyle.setFillForegroundColor(new XSSFColor(colors[iCol]));
        tempBodyStyle.setFillForegroundColor(new XSSFColor(colors[iCol],null));
        tempBodyStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
        cell.setCellStyle(tempBodyStyle);
    }        
    FileOutputStream fileOut = new FileOutputStream(new File("testfile.xlsx"));
    BufferedOutputStream bos = new BufferedOutputStream(fileOut);
    workbook.write(bos);
    fileOut.close();
}

解决方案:
替换fileout.close();bos.close();,它可以工作。因此tempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null));,正如 Alex Richter 在评论中所建议的那样,这是一个很好的解决方案,并且会接受这个作为答案。

4

1 回答 1

7

如果您将 a 包装FileOutputStream在 anBufferedOutputStream但关闭,则只有内部FileOutputStream而不是BufferedOutputStream,然后BufferedOutputStream保持打开状态,文件将不会包含所有字节。

这就是文件损坏的原因。

因此,破坏性与构建XSSFColor. 构造函数style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null));工作。

改为:

...
FileOutputStream fileOut = new FileOutputStream(new File("testfile.xlsx"));
BufferedOutputStream bos = new BufferedOutputStream(fileOut);
workbook.write(bos); 
bos.close();
workbook.close();
...

它可能在以前的 apache poi 版本中有效,因为XSSFWorkbook.write它在准备好时关闭了所有流。这并没有更多。这是正确的,因为write不应该关闭流。

但是由于POIXMLDocument实现java.io.Closeable至少workbook.close()应该关闭所有流。但这也不是。因此,在apache poi 4.0.0.

于 2018-11-09T16:56:46.350 回答