簡體   English   中英

將數據從JTable導入Excel

[英]Import data from JTable to Excel

我有代碼將數據從JTable導入Excel,如下所示:

public void toExcel(JTable table, File file){
try {

        WritableWorkbook workbook1 = Workbook.createWorkbook(file);
        WritableSheet sheet1 = workbook1.createSheet("First Sheet", 0); 
        TableModel model = table.getModel();

        for (int i = 0; i < model.getColumnCount(); i++) {
            Label column = new Label(i, 0, model.getColumnName(i));
            sheet1.addCell(column);
        }
        int j = 0;
        for (int i = 0; i < model.getRowCount(); i++) {
            for (j = 0; j < model.getColumnCount(); j++) {
                Label row = new Label(j, i + 1, 
                        model.getValueAt(i, j).toString());
                sheet1.addCell(row);
            }
        }
        workbook1.write();
        workbook1.close();
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}


void excell(){
          toExcel(TabelPerencanaan, new File("H:\\Hasil.xlsx"));
                JOptionPane.showMessageDialog(null, "Data saved at " +
                        "'H: \\ Hasil.xlsx' successfully", "Message",
                        JOptionPane.INFORMATION_MESSAGE);

}

但是,當打開文件“Hasil.xlsx”時總是出錯。 所以,那個文件無法打開。 我不知道為什么這樣。 謝謝

問題是Java Excel API僅生成Excel 2000格式的電子表格。 在這種情況下,您需要:

new File("H:\\Hasil.xls")

但如果您確實需要生成XLSX,則可以使用Apache POI

Workbook wb = new XSSFWorkbook();
Sheet sheet = wb.createSheet();
Row row = sheet.createRow(0);
TableModel model = table.getModel();
for (int i = 0; i < model.getColumnCount(); i++) {
    row.createCell(i).setCellValue(model.getColumnName(i));
}
for (int i = 0; i < model.getRowCount(); i++) {
    row = sheet.createRow(i + 1);
    for (int j = 0; j < model.getColumnCount(); j++) {
        row.createCell(j).setCellValue(
            model.getValueAt(i, j).toString()
        );
    }
}
FileOutputStream fileOut = new FileOutputStream("H:\\Hasil.xlsx");
wb.write(fileOut);
fileOut.close();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM