使用Apache Poi永久保存文件时使用Excel打开

时间:2014-09-16 13:24:10

标签: java excel apache-poi

我正在使用Apache Poi从JTable创建Excel文件。

我想直接在Excel中打开文件,而不是先将其写入磁盘,然后从磁盘中打开它。

FileOutputStream output = new FileOutputStream( StolleExcel.xls" );
workBook.write( output );

Desktop dt = Desktop.getDesktop();
dt.open( new File( "StolleExcel.xls" ) );

output.close();

是否有临时保存Excel对象的方法,然后只需用Excel打开它,这样用户可以保存或编辑他们想要的任何内容?

0 个答案:

没有答案