如何在 android 中读取受密码保护/从 pdf 中删除密码?

How to read password protected/ remove password from pdf in android?

我正在使用 MuPDF 库在应用程序中阅读 PDF。对于普通的 pdf,它对我来说工作正常。但是对于受密码保护的 pdf,我无法打开我的 pdf。如何让它成为可能?任何人都可以帮助我吗?我使用了示例代码:

private MuPDFCore openFile(String path) {
        int lastSlashPos = path.lastIndexOf('/');
        mFilePath = lastSlashPos == -1 ? path : path.substring(lastSlashPos + 1);
        try {
            core = new MuPDFCore(mContext, path);
        } catch (Exception e) {
            Log.e(tag, "Error: "+e.getMessage());
            return null;
        }
        return core;
    }

查看 mupdf Android 示例代码中 MuPDFActivity.java 中的 requestPassword(以及对它的调用)。