在C#

时间:2018-09-07 09:40:45

标签: c# excel encryption apache-poi npoi

END GOAL:使用NPOI.dll获取不受保护的工作表(从工作表上具有默认密码的XLS和XLSX文档中获取)。

IWorkbook workbook = WorkbookFactory.Create(fileStream);
ISheet sheet = workbook.GetSheetAt(0); //sheet is protected (sheet.Protect=true) with default password
//Decrypt sheet...

是否可以使用NPOI.POIFS.Crypt解密ISheet?

0 个答案:

没有答案