使用Java创建Word文档

时间:2016-03-01 19:35:54

标签: java ms-word

我有来自数据库的数据的默认表模型获取,我想在doc word中作为表打印。如何实现这一目标。请参阅以下代码:

    try {
        try {
            con = connCC.getDBconnection();
             } catch (ClassNotFoundException ex) {
              Logger.getLogger(CustomerSR.class.getName()).log(Level.SEVERE, null, ex);
        }
        stm = con.createStatement();
        ResultSet rs = stm.executeQuery("Select * From Appointment");

        while (rs.next()) {

            for (int col = 0; col < 1; col++) {
                rowData.add(rs.getString(1));
                rowData.add(rs.getString(2));
                rowData.add(rs.getString(3));
                rowData.add(rs.getString(4));
                rowData.add(rs.getString(5));
            }
            model.addRow(rowData);
        }
            window.display(model);
           //window.display(names, phones, addresses);
        } catch (SQLException ex) {
          ex.printStackTrace();
    }

}

1 个答案:

答案 0 :(得分:1)

在上面的评论中,我看到您已经在使用Apache POI。如果我理解正确,您希望将数据库中的数据输入到word文档的表中。看一下使用Apache POI创建表格的本教程: http://www.tutorialspoint.com/apache_poi_word/apache_poi_word_tables.htm

您可以直接使用从数据库中检索的数据设置文本。如果您需要,我可以发布一个示例,但是教程可以很好地展示您需要做什么。

---- ---- UPDATE

抱歉,我花了一段时间,和妻子共进午餐。试试这个:

// 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();

// Table row
XWPFTableRow tableRow;

int rowCount = model.getRowCount() - 1;
int colCount = model.getColumnCount() - 1;

// Iterate through rows
for (int row = 0; row <= rowCount; row++) {
    tableRow = table.getRow(row);

    // Iterate through columns
    for (int col = 0; col <= colCount; col++) {
        tableRow.getCell(col).setText((String) model.getValueAt(row, col));

        // If more columns, add cell
        if (row == 0 && col < colCount) {
            tableRow.addNewTableCell();
        }
    }

    // If more rows, add row
    if (row < rowCount) {
        table.createRow();
    }
}

// Write to word document and close file.        
document.write(out);
out.close();