0

我正在编写一个利用 Apache-poi 读取 ms-office .doc 文件和 itext jar API 来创建和写入 pdf 文件的 java 代码。我已经阅读了 .doc 文件中打印的文本和表格。现在我正在寻找一种读取文档中写入图像的解决方案。我编写了如下代码来读取文档文件中的图像。为什么这段代码不起作用。

public static void main(String[] args) {
    POIFSFileSystem fs = null;  
    Document document = new Document();
    WordExtractor extractor = null ;
    try {
        fs = new POIFSFileSystem(new FileInputStream("C:\\DATASTORE\\tableandImage.doc"));
        HWPFDocument hdocument=new HWPFDocument(fs);
        extractor = new WordExtractor(hdocument);
        OutputStream fileOutput = new FileOutputStream(new File("C:/DATASTORE/tableandImage.pdf"));
        PdfWriter.getInstance(document, fileOutput);
        document.open();
        Range range=hdocument.getRange();
        String readText=null;
        PdfPTable createTable;
        CharacterRun run;
        PicturesTable picture;

        for(int i=0;i<range.numParagraphs();i++) {
            Paragraph par = range.getParagraph(i);
            readText=par.text();
            if(!par.isInTable()) {
                if(readText.endsWith("\n")) {
                    readText=readText+"\n";
                    document.add(new com.itextpdf.text.Paragraph(readText));
                } if(readText.endsWith("\r")) {
                      readText += "\n";
                      document.add(new com.itextpdf.text.Paragraph(readText));
                  }
                run =range.getCharacterRun(i);
                picture=hdocument.getPicturesTable();
                if(picture.hasPicture(run)) {
                //if(run.isSpecialCharacter()) {  
                    Picture pic=picture.extractPicture(run, true);
                    byte[] picturearray=pic.getContent();
                    com.itextpdf.text.Image image=com.itextpdf.text.Image.getInstance(picturearray);
                    document.add(image);
                }
            } else if (par.isInTable()) { 
                  Table table = range.getTable(par);
                  TableRow tRow1= table.getRow(0);
                  int numColumns=tRow1.numCells();
                  createTable=new PdfPTable(numColumns);
                  for (int rowId=0;rowId<table.numRows();rowId++) {
                      TableRow tRow = table.getRow(rowId);
                      for (int cellId=0;cellId<tRow.numCells();cellId++) {
                          TableCell tCell = tRow.getCell(cellId);
                          PdfPCell c1 = new PdfPCell(new Phrase(tCell.text()));
                          createTable.addCell(c1);
                      }
                  }
                  document.add(createTable);
              } 
        }
    }catch(IOException e) {
        System.out.println("IO Exception");
        e.printStackTrace();
    }
    catch(Exception exep) {
        exep.printStackTrace();
    }finally {  
        document.close();  
    }  
}

问题是: 1. 条件 if(picture.hasPicture(run)) 不满足但文档有 jpeg 图像。

  1. 我在阅读表格时遇到了以下异常。

    java.lang.IllegalArgumentException:此段落不是 pagecode.ReadDocxOrDocFile.main(ReadDocxOrDocFile.java:113) 处 org.apache.poi.hwpf.usermodel.Range.getTable(Range.java:876) 表中的第一个段落

任何人都可以帮我解决这个问题。谢谢你。

4

1 回答 1

0

关于你的例外:

您的代码遍历所有段落并调用isInTable()每个段落。由于表格通常由几个这样的段落组成,因此您getTable()对单个表格的调用也会多次执行。

但是,您的代码应该做的是找到表格的第一段,然后处理其中的所有段落(通过getRow(m).getCell(n))并最终在表格之后的第一段中继续外循环。从代码上看,这可能看起来大致如下(假设没有合并单元格、没有嵌套表和其他有趣的边缘情况):

if (par.isInTable()) {
    Table table = range.getTable(par);
    for (int rn=0; rn<table.numRows(); rn++) {
        TableRow row = table.getRow(rn);
        for (int cn=0; cn<row.numCells(); cn++) {
            TableCell cell = row.getCell(cn);
            for (int pn=0; pn<cell.numParagraphs(); pn++) {
                Paragraph cellParagraph = cell.getParagraph(pn);
                // your PDF conversion code goes here
            }
        }
    }
    i += table.numParagraphs()-1; // skip the already processed (table-)paragraphs in the outer loop
}

关于图片问题:

我猜对了,您正在尝试获取锚定在给定段落中的图片吗?不幸的是,POI 的预定义方法仅在图片未嵌入到字段中时才有效(实际上这种情况很少见)。对于基于字段的图像(即嵌入式 OLE 的预览图像),您应该执行以下操作(未经测试!):

PictureStore pictureStore = new PictureStore(hdocument);
// bla bla ...
for (int cr=0; cr < par.numCharacterRuns(); cr++) {
    CharacterRun characterRun = par.getCharacterRun(cr);
    Field field = hdocument.getFields().getFieldByStartOffset(FieldsDocumentPart.MAIN, characterRun.getStartOffset());
    if (field != null && field.getType() == 0x3A) { // 0x3A is type "EMBED"   
        Picture pic = pictureStore.getPicture(field.secondSubrange(characterRun));
    }
}

有关可能值的列表,Field.getType()请参见此处

于 2015-12-31T20:59:09.600 回答