我正在使用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打开它,这样用户可以保存或编辑他们想要的任何内容?