我们如何使用POI API读取受保护的密码excel文件(.xls)

时间:2009-07-30 03:53:24

标签: apache-poi poi-hssf

我刚刚学习了POI并发现HSSF非常易于阅读和创建excel文件(.xls)。 但是,当我想用​​密码读取excel保护时,我发现了一些问题。 我花了一个小时才在互联网上找到这个解决方案。

请你帮我解决这个问题。 如果你能给我一个代码片段,我很高兴。

谢谢。

6 个答案:

答案 0 :(得分:6)

请参阅http://poi.apache.org/encryption.html - 如果您使用的是最新的Apache POI副本(例如3.8),则可以解密加密的.xls文件(HSSF)和.xlsx文件(XSSF)(证明您有密码) !)

目前您无法写出加密的Excel文件,只有未加密的文件

答案 1 :(得分:2)

这是一个完整的示例代码,它读入受保护的Excel文件,使用密码解密并写出不受保护的Excel文件

    public static void readProtectedBinFile() {
    try {

        InputStream inp = new FileInputStream("c:\\tmp\\protectedFile.xls");
        org.apache.poi.hssf.record.crypto.Biff8EncryptionKey.setCurrentUserPassword("abracadabra"); 

        Workbook wb;
        wb = WorkbookFactory.create(inp);

        // Write the output to a file
        FileOutputStream fileOut;
        fileOut = new FileOutputStream("c:\\tmp\\unprotectedworkbook.xlsx");
        wb.write(fileOut);
        fileOut.close();
    } catch (InvalidFormatException e) {
        e.printStackTrace();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

}

答案 2 :(得分:2)

在您撰写问题时,使用Apache POI并不容易。从那时起,支持已经取得了长足的进展

现在,如果您要打开密码保护的Excel文件,无论是.xls还是.xlsx,您知道密码,您只需使用WorkbookFactory.create(File,Password),例如

File input = new File("password-protected.xlsx");
String password = "nice and secure";
Workbook wb = WorkbookFactory.create(input, password);

这将标识文件的类型,使用给定的密码对其进行解密,然后为您打开。然后,您可以正常阅读内容

答案 3 :(得分:1)

这是读取Excel文件的代码,检查.xls和.xlsx(密码受保护或没有密码保护)作为完整的示例代码。

 private Workbook createWorkbookByCheckExtension() throws IOException, InvalidFormatException {
                Workbook workbook = null;
                String filePath = "C:\\temp\\TestProtectedFile.xls";
                String fileName = "TestProtectedFile.xls";
                String fileExtensionName = fileName.substring(fileName.indexOf("."));
                if (fileExtensionName.equals(".xls")) {                         
                    try {
                        FileInputStream fileInputStream = new FileInputStream(new File(filePath));
                        workbook = new HSSFWorkbook(fileInputStream);                               
                    } catch (EncryptedDocumentException e) {
                        // Checking of .xls file with password protected.
                        FileInputStream fileInputStream = new FileInputStream(new File(filePath));
                        Biff8EncryptionKey.setCurrentUserPassword("password");
                        workbook = new HSSFWorkbook(fileInputStream);
                    }                           
                } else if (fileExtensionName.equals(".xlsx")){
                    // Checking of .xlsx file with password protected.
                    String isWorkbookLock = "";
                    InputStream is = null;
                    is = new FileInputStream(new File(filePath));
                    if (!is.markSupported()) {
                        is = new PushbackInputStream(is, 8);
                    }

                    if (POIFSFileSystem.hasPOIFSHeader(is)) {
                        POIFSFileSystem fs = new POIFSFileSystem(is);
                        EncryptionInfo info = new EncryptionInfo(fs);
                        Decryptor d = Decryptor.getInstance(info);
                        try {
                            d.verifyPassword("password");
                            is = d.getDataStream(fs);
                            workbook = new XSSFWorkbook(OPCPackage.open(is));
                            isWorkbookLock = "true";
                        } catch (GeneralSecurityException e) {
                            e.printStackTrace();
                        }               
                    }           
                    if (isWorkbookLock != "true") {
                        FileInputStream fileInputStream = new FileInputStream(new File(filePath));
                        workbook = new XSSFWorkbook(fileInputStream);
                    }
                }
                return workbook;
            }

答案 4 :(得分:0)

POI无法读取加密的工作簿 - 这意味着如果您保护了整个工作簿(而不仅仅是工作表),那么它就不会能够阅读它。否则,它应该工作。

答案 5 :(得分:0)

拉维是对的。您似乎可以读取密码保护,但不能使用POI读取加密文件。见http://osdir.com/ml/user-poi.apache.org/2010-05/msg00118.html。以下代码打印出文件的跟踪

POIFSLister lister = new POIFSLister();
lister.viewFile(spreadsheetPath, true);

如果您收到提及加密的输出,则无法使用POI打开该文件。