要保存XSSFWorkbook對象到文件中,可以使用其write方法將內容寫入到輸出流中,然后關閉文件流。示例如下:
try {
FileOutputStream fileOut = new FileOutputStream("workbook.xlsx");
workbook.write(fileOut);
fileOut.close();
} catch (IOException e) {
e.printStackTrace();
}
要關閉XSSFWorkbook對象,可以使用其close方法,示例如下:
workbook.close();