Java Apache POI打开文件?

时间:2013-11-25 03:04:38

标签: java excel file-io apache-poi

我有一个Java程序,它编辑现有的excel文件并将其保存为新文件。但是,我还希望程序在结束时自动打开新创建的文件。是否有apache poi命令可以让我这样做?

3 个答案:

答案 0 :(得分:6)

由于您没有提供代码,我使用 ViralPatel Tutorial

的示例

让我们先创建Excel文件

HSSFWorkbook workbook = new HSSFWorkbook();
        HSSFSheet sheet = workbook.createSheet("Sample sheet");

    Map<String, Object[]> data = new HashMap<String, Object[]>();
    data.put("1", new Object[] { "Emp No.", "Name", "Salary" });
    data.put("2", new Object[] { 1d, "John", 1500000d });
    data.put("3", new Object[] { 2d, "Sam", 800000d });
    data.put("4", new Object[] { 3d, "Dean", 700000d });

    Set<String> keyset = data.keySet();
    int rownum = 0;
    for (String key : keyset) {
        Row row = sheet.createRow(rownum++);
        Object[] objArr = data.get(key);
        int cellnum = 0;
        for (Object obj : objArr) {
            Cell cell = row.createCell(cellnum++);
            if (obj instanceof Date)
                cell.setCellValue((Date) obj);
            else if (obj instanceof Boolean)
                cell.setCellValue((Boolean) obj);
            else if (obj instanceof String)
                cell.setCellValue((String) obj);
            else if (obj instanceof Double)
                cell.setCellValue((Double) obj);
        }
    }

    try {
        FileOutputStream out = new FileOutputStream(new File("D:\\new.xls"));
        workbook.write(out);
        out.close();
        System.out.println("Excel written successfully..");

        /** Opening Excel File From Java **/

        try {
            Desktop.getDesktop().open(new File("D:\\new.xls"));
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

输出

enter image description here

解决方案:在使用正确的位置创建Excel后,将此代码与Try / Catch Block放在一起,它将自动打开

  

Desktop.getDesktop()。open(新文件(“D:\ new.xls”));

否则你也可以调用它

尝试使用Desktop.open()而不是Desktop.edit():

Desktop dt = Desktop.getDesktop();
dt.open(new File("D:\\new.xls"));

如果Desktop.open()不可用,则可以使用Windows文件关联:

 Process p =    Runtime.getRuntime()    .exec("rundll32
 url.dll,FileProtocolHandler " + "D:\\new.xls");

答案 1 :(得分:3)

答案 2 :(得分:2)

我不知道POI是否提供此类方法。但是,您可以使用简单的java方法执行此操作,该方法使用命令提示符并使用start命令打开所需的文件。

public static void openExcelFile(){
    try{    
        Runtime.getRuntime().exec("cmd /c start "+FilePath);
    }catch(IOException  e){  
        e.printStackTrace();  
    }
}

注意:start之后的空格是强制性的。别忘记了