3

我有以下代码块:

        File file = new File("myFile.xlsx");  // my file
        inputStream = new FileInputStream(file);
        System.out.println("reading");
        XSSFWorkbook wb = new XSSFWorkbook(inputStream);
        XSSFSheet sh = wb.getSheetAt(0); // first sheet
        Iterator rowIter = sh.rowIterator();
        while(rowIter.hasNext()){ // iterate over all rows
            System.out.println("New Row "); // notify of new row
            Row myRow = (Row) rowIter.next();
            Iterator cellIter = myRow.cellIterator();
            while(cellIter.hasNext()){ // iterate over all cells in row
                XSSFCell myCell = (XSSFCell) cellIter.next();
                //how can I check that myCell has an image?
                //(I'm expecting it to be in the fourth cell each time)

                System.out.print(" " + myCell); // output cell content on same line
            }
        } 
        inputStream.close();

我正在使用 Apache POI 读取 .xlsx 文件。每行可以包含一个带有用户粘贴到其中的图像的单元格。

我希望抓取图像并将其编码为base64。如何在遍历电子表格时检查单元格是否包含图像?

我已经阅读了http://poi.apache.org/spreadsheet/quick-guide.html#Images,但这涉及首先获取所有图像,然后遍历它们。我想遍历单元格并检查图像。

4

1 回答 1

2

以下代码遍历第一张纸的所有图像。因此,您不需要遍历行/列,而是立即获得位置。除了OneCellAnchorTwoCellAnchor也有AbsoluteAnchors不能直接与单元格相关联的。

import org.apache.poi.POIXMLDocumentPart;
import org.apache.poi.openxml4j.opc.*;
import org.apache.poi.xssf.usermodel.*;
import org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.*;

public class Images2Cells {
    public static void main(String[] args) throws Exception {
        OPCPackage opc = OPCPackage.open("auto.xlsx", PackageAccess.READ);
        XSSFWorkbook book = new XSSFWorkbook(opc);

        XSSFSheet sheet = book.getSheetAt(0);
        for (POIXMLDocumentPart pdp : sheet.getRelations()) {
            if (!XSSFRelation.DRAWINGS.getRelation().equals(pdp.getPackageRelationship().getRelationshipType())) continue;

            PackagePart drawPP = pdp.getPackagePart();
            WsDrDocument draw = WsDrDocument.Factory.parse(drawPP.getInputStream());

            for (CTOneCellAnchor oneAnc : draw.getWsDr().getOneCellAnchorList()) {
                String picId = oneAnc.getPic().getBlipFill().getBlip().getEmbed();
                PackageRelationship pr = drawPP.getRelationship(picId);
                PackagePart imgPP = drawPP.getRelatedPart(pr);
                // byte imgBytes[] = IOUtils.toByteArray(imgPP.getInputStream());

                System.out.println(imgPP.getPartName()
                    +" - Col: "+oneAnc.getFrom().getCol()
                    +" - Row: "+oneAnc.getFrom().getRow()
                );
            }

            for (CTTwoCellAnchor twoAnc : draw.getWsDr().getTwoCellAnchorList()) {
                String picId = twoAnc.getPic().getBlipFill().getBlip().getEmbed();
                PackageRelationship pr = drawPP.getRelationship(picId);
                PackagePart imgPP = drawPP.getRelatedPart(pr);

                System.out.println(imgPP.getPartName()
                    +" - Col1: "+twoAnc.getFrom().getCol()
                    +" - Row1: "+twoAnc.getFrom().getRow()
                    +" - Col2: "+twoAnc.getTo().getCol()
                    +" - Row2: "+twoAnc.getTo().getRow()
                );
            }
        }

        opc.revert();
    }
}
于 2013-10-13T00:06:42.173 回答