Apache poi表(XWPFTable)未正确生成



有很多关于apache poi的教程,但我在创建表方面遇到了问题。我正在尝试这个代码:

public class CreateTable
{
    public static void main(String[] args)throws Exception
    {
        //Blank Document
        XWPFDocument document= new XWPFDocument();
        //Write the Document in file system
        FileOutputStream out = new FileOutputStream(
                new File("create_table.docx"));
        //create table
        XWPFTable table = document.createTable();
        //create first row
        XWPFTableRow tableRowOne = table.getRow(0);
        tableRowOne.getCell(0).setText("col one, row one");
        tableRowOne.addNewTableCell().setText("col two, row one");
        tableRowOne.addNewTableCell().setText("col three, row one");
        //create second row
        XWPFTableRow tableRowTwo = table.createRow();
        tableRowTwo.getCell(0).setText("col one, row two");
        tableRowTwo.getCell(1).setText("col two, row two");
        tableRowTwo.getCell(2).setText("col three, row two");
        //create third row
        XWPFTableRow tableRowThree = table.createRow();
        tableRowThree.getCell(0).setText("col one, row three");
        tableRowThree.getCell(1).setText("col two, row three");
        tableRowThree.getCell(2).setText("col three, row three");
        document.write(out);
        out.close();
        System.out.println("create_table.docx written successully");
    }
}

但在Libre office中,ubuntu表的宽度是无穷大的,当我把它加载到谷歌文档时,这个文档中什么都没有。设置表的宽度没有帮助。我做错了什么?请帮忙(

您可以通过以下方式设置宽度:

XWPFDocument doc = new XWPFDocument();
XWPFTable table = doc.createTable(1,2);
table.getCTTbl().addNewTblGrid().addNewGridCol().setW(BigInteger.valueOf(6000));
table.getCTTbl().getTblGrid().addNewGridCol().setW(BigInteger.valueOf(2000));
table.getRow(0).getCell(0).setText("1A");
table.getRow(0).getCell(1).setText("1B");
XWPFTableRow newrow = table.createRow();
newrow.getCell(0).setText("2A");
newrow.getCell(1).setText("2B");

您的代码运行良好!

XWPF用于创建.docx文档。如果您需要使用.doc,则必须使用HWPF。

此外。。。这些文档的XML结构不同。你提到的格式问题可能就是由这个原因引起的。

相关内容

  • 没有找到相关文章

最新更新