1. 程式人生 > >POI操作Excel:密碼保護和公式再計算

POI操作Excel:密碼保護和公式再計算


sheet1.setForceFormulaRecalculation(true);

// 寫入excel檔案
fileOut = new FileOutputStream("d:/workbook.xls");
wb.write(fileOut);
fileOut.close();
} catch (IOException io) {
io.printStackTrace();
System.out.println("erorr : " + io.getMessage());
} finally {
if (fileOut != null) {
try {
fileOut.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}