首页 > 解决方案 > 如何使用 JFileChooser 保存 XLS 文件?

问题描述

我有负责使用 Apache POI 工作簿创建 XLS 文件的方法,我想使用JFileChooser. 现在我可以使用文件编写器创建该文件并将其保存到预定义的位置。

但要求是使用 保存该文件JFileChooser,我无法理解如何执行此操作。

这是我的代码:

public void excelFileCreation() 
{
    try
    {
        String path = "D:/";

        String fileName = "EwayBill.xls";

        String filename = path.concat(fileName);

        Workbook wb = new HSSFWorkbook();

        Sheet sheet = wb.createSheet("Eway Bill");

        Row row1 = sheet.createRow((short)0);
        Row row2 = sheet.createRow((short)0);

        CellRangeAddress transactionDetails = new CellRangeAddress(0, 0, 0, 5);
        sheet.addMergedRegion(transactionDetails);
        row2.createCell(0).setCellValue("Transaction details");


        CellRangeAddress fromConsignorDetails = new CellRangeAddress(0, 0, 6, 13);
        sheet.addMergedRegion(fromConsignorDetails);
        row2.createCell(6).setCellValue("Transaction details");

        Row rowhead = sheet.createRow((short)1);
        rowhead.createCell(0).setCellValue("User GSTIN");
        rowhead.createCell(1).setCellValue("Supply Type");
        rowhead.createCell(2).setCellValue("Sub Type");
        rowhead.createCell(3).setCellValue("Document Type");
        rowhead.createCell(4).setCellValue("Document No");

        Row row = sheet.createRow((short)2);
        row.createCell(0).setCellValue(" ");
        row.createCell(1).setCellValue(" ");
        row.createCell(2).setCellValue(" ");
        row.createCell(3).setCellValue(" ");
        row.createCell(4).setCellValue(" ");

        for(int i=0; i<=79; i++)
        {
            sheet.setColumnWidth(i, 6000);
        }

        FileOutputStream fileOut = new FileOutputStream(filename);
        wb.write(fileOut);

        fileOut.close();

        if (fileChooser.showSaveDialog(this) == JFileChooser.APPROVE_OPTION) 
        {
          java.io.File file = fileChooser.getSelectedFile();
          // save to file
        }

        System.out.println("Your excel file has been generated!");

    }
    catch(Exception e)
    {
        e.printStackTrace();
    }
}

标签: javaswingapache-poijfilechooserxlsxwriter

解决方案


答案最有可能改变这一点:

    FileOutputStream fileOut = new FileOutputStream(filename);
    wb.write(fileOut);

    fileOut.close();

    if (fileChooser.showSaveDialog(this) == JFileChooser.APPROVE_OPTION) 
    {
      java.io.File file = fileChooser.getSelectedFile();
      // save to file
    }

对此:

    if (fileChooser.showSaveDialog(this) == JFileChooser.APPROVE_OPTION) 
    {
      java.io.File file = fileChooser.getSelectedFile();
      FileOutputStream fileOut = new FileOutputStream(file);
      wb.write(fileOut);

      fileOut.close();
    }

我说“最有可能”是因为我无法确定是否会看到 MCVE / SSCCE。


推荐阅读