HWPF-POI:在带有 java 的单词中插入 table

HWPF-POI: inserting table in word with java

我想用 POI-HWPF(例如 doc 格式)在 Word 中创建一个 table。 我的示例代码是:

Table table = document.getRange().insertTableBefore((short) 2, 2);

table 已插入,但我看不到它 - 好像 table 的宽度为 0。 有人可以帮助我吗?

this 旧错误报告中链接的文件应该可以让您了解如何操作。

所以本质上:您可能需要添加一些内容(即单元格中的一段)以便 Word 可以呈现某些内容。

这是错误报告中使用的示例代码:

private static void test (int rows, int columns) throws Exception {
    // POI apparently can't create a document from scratch,
    // so we need an existing empty dummy document
    POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("empty.doc"));
    HWPFDocument doc = new HWPFDocument(fs);

    Range range = doc.getRange();
    Table table = range.insertBefore(new TableProperties(columns), rows);

    for (int rowIdx=0; rowIdx<table.numRows(); rowIdx++) {
        TableRow row = table.getRow(rowIdx);
        System.out.println("row "+rowIdx);
        for (int colIdx=0; colIdx<row.numCells(); colIdx++) {
            TableCell cell = row.getCell(colIdx);
            System.out.println("column "+colIdx+", num paragraphs "+cell.numParagraphs());
            try {
                Paragraph par = cell.getParagraph(0);
                par.insertBefore(""+(rowIdx*row.numCells()+colIdx));
            } catch (Exception ex) {
                ex.printStackTrace();
            }
        }
    }