3

我的视图上有一个带有五列的 SWT 表。

我想要做的是将该表中的数据导出为 Excel 电子表格。我想发生以下情况。

  1. 表格中的列标题应出现在电子表格中。

  2. 所有数据都应该有我选择的字体。

  3. 所有电子表格单元格都应具有我选择的宽度。

  4. 所有单元格格式都应为“文本”。

有人可以指出我正确的方向吗?谢谢你。

4

3 回答 3

1

我使用 Apache POI 将 TableViewer 内容转储到 Excel 工作簿中,结果很好。

下面是一个创建包含给定 TableViewer 内容的 XSSFWorkbook 的示例方法。它包含样式单元格和自动调整列宽的示例。

请注意,我的列名位于一个名为 tableColumnNames 的字符串数组中,因为它们在我的代码中的其他地方使用,并且仅使用该数组很方便,但您也可以从 TableViewer 中获取它们。

private XSSFWorkbook createWorkbookFromTable(TableViewer table) {
    // create a workbook
    XSSFWorkbook wb = new XSSFWorkbook();

    // add a worksheet
    XSSFSheet sheet = wb.createSheet("My Table Data");

    // shade the background of the header row
    XSSFCellStyle headerStyle = wb.createCellStyle();
    headerStyle.setFillForegroundColor(IndexedColors.LEMON_CHIFFON.getIndex());
    headerStyle.setFillPattern(CellStyle.SOLID_FOREGROUND);
    headerStyle.setBorderTop(CellStyle.BORDER_THIN);
    headerStyle.setBorderBottom(CellStyle.BORDER_THIN);
    headerStyle.setBorderLeft(CellStyle.BORDER_THIN);
    headerStyle.setBorderRight(CellStyle.BORDER_THIN);
    headerStyle.setAlignment(HorizontalAlignment.CENTER);

    // add header row
    Table table = table.getTable();
    TableColumn[] columns = table.getColumns();
    int rowIndex = 0;
    int cellIndex = 0;
    XSSFRow header = sheet.createRow((short) rowIndex++);
    for (TableColumn column : columns) {
        String columnName = column.getText();
        XSSFCell cell = header.createCell(cellIndex++);
        cell.setCellValue(column.getText());
        cell.setCellStyle(headerStyle);
    }

    // add data rows
    TableItem[] items = table.getTable().getItems();
    for (TableItem item : items) {
        // create a new row
        XSSFRow row = sheet.createRow((short) rowIndex++);
        cellIndex = 0;

        for (int i = 0; i < columns.length; i++) {
            // create a new cell
            String columnName = tableColumnNames[i];
            XSSFCell cell = row.createCell(cellIndex++);

            // set the horizontal alignment (default to RIGHT)
            XSSFCellStyle cellStyle = wb.createCellStyle();
            ha = HorizontalAlignment.RIGHT;
            cellStyle.setAlignment(ha);
            cell.setCellStyle(cellStyle);

            // set the cell's value
            String text = item.getText(i);
            cell.setCellValue(text);
        }
    }

    // autofit the columns
    for (int i = 0; i < columns.length; i++) {
        sheet.autoSizeColumn((short) i);
    }

    return wb;
}

获得 XSSFWorkbook 后,可以将其转储到如下文件中:

public void dumpWorkbookToAFile(XSSFWorkbook wb, String filename) {
    try {
        FileOutputStream fos = new FileOutputStream(filename);
        wb.write(fos);
        fos.close();
        MessageDialog.openInformation(shell,
            "Save Workbook Successful",
            "Workbook saved to the file:\n\n" + filename);
    } catch (IOException ioe) {
        ioe.printStackTrace();
        String msg = ioe.getMessage();
        MessageDialog.openError(shell, 
            "Save Workbook Failed",
            "Could not save workbook to the file:\n\n" + msg);
    }
}
于 2012-12-21T15:12:11.900 回答
0

我会使用 OpenOffice SDK 以编程方式创建电子表格。但是,它必须安装并且服务必须在用户使用视图时运行。我不知道你的情况是否可以接受。

于 2012-12-21T11:11:07.410 回答
0

您可以使用这些框架中的任何一个来使用 Java 应用程序创建 Excel 工作表,具体取决于您的要求和应用程序的复杂性。1. http://poi.apache.org/spreadsheet/index.html 2. http://extentech.com/estore/product_detail.jsp?product_group_id=1

于 2012-12-21T11:24:51.633 回答