我有代码将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”时总是出错。所以,那个文件无法打开。我不知道为什么这样。感谢
答案 0 :(得分:3)
问题是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();