表没有使用docx4j库在docx中创建

时间:2013-06-17 19:36:15

标签: java docx4j

我正在尝试使用docx4j库创建一个表并将其添加到MainDocumentPart,但是它破坏了文档并且它没有打开(我使用带有docx格式的MS Word 2010)

// creating docx

    WordprocessingMLPackage wordPackage =   WordprocessingMLPackage.createPackage();

      // creating a table

      // use ObjectFactory for creating the table, table row and table cell

       ObjectFactory factory =  Context.getWmlObjectFactory();


       // create the table

       Tbl table = factory.createTbl();


       // create a row

       R row = factory.createR();


       // create a cell

       Tc cell = factory.createTc();


       // add the content to cell

       cell.getContent().add(wordPackage.getMainDocumentPart().createParagraphOfText("table cell data added"));


       // add the cell to row

       row.getContent().add(cell);


       // add the row to table

       table.getContent().add(row);


       // adding the table to main document part

       wordPackage.getMainDocumentPart().addObject(table);


    wordPackage.save(new File("D:\\Programs\\test\\Doc222.docx"));

1 个答案:

答案 0 :(得分:2)

R不是一排;这是一次奔跑。

要生成表格,最简单的方法是在Microsoft Word(或LibreOffice / OpenOffice或其他)中创建合适的docx,并将其上传到docx4j demo webapp