【问题标题】:Can not save PDF file with FileProvider and external PDF Editor无法使用 FileProvider 和外部 PDF 编辑器保存 PDF 文件
【发布时间】:2021-01-31 22:13:39
【问题描述】:

我的应用程序的 Android/data/packagename 文件夹中有各种 PDF,需要能够编辑它们。通过例如开口Adobe Reader 工作没有任何问题,并且 FileProvider 工作至今。当我关闭 PDF 编辑器时,未保存更改的文件。我尝试了不同的 PDF 编辑器。不幸的是,到目前为止我还没有找到任何其他选择。非常感谢您的帮助!

清单中的提供者

<provider
    android:name="androidx.core.content.FileProvider"
    android:authorities="${applicationId}.provider"
    android:exported="false"
    android:grantUriPermissions="true" >
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/provider_paths" />
</provider>

provider_paths.xml

<paths>
    <external-path name="external_files" path="."/>
</paths>

Java 代码

    public void openPDF(SetupFile setup) {
        File pdfFile = new File(this.getExternalFilesDir(null).getAbsolutePath() + "/setups", setup.getFileName());

        if (pdfFile.exists()) {
            try {
                Uri uri = FileProvider.getUriForFile(this.getContext(), this.getContext().getPackageName() + ".provider", pdfFile);
                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setDataAndType(uri, "application/pdf");
                intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
                intent.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
                intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
                startActivity(intent);
            } catch (Exception e) {
                Toast.makeText(fThis.getActivity(), getString(R.string.error_no_pdf_editor), Toast.LENGTH_LONG).show();
            }
        } else {
            Toast.makeText(getActivity(), getString(R.string.error_file_not_exists), Toast.LENGTH_LONG).show();
        }
    }

【问题讨论】:

    标签: java android pdf android-fileprovider


    【解决方案1】:

    您要求“ACTION_VIEW”文件,因此尊重您意图的应用程序会认为它只能读取它。

    从技术上讲,这意味着 FileProvider.openFile(android.net.Uri,java.lang.String) 方法将在“r”模式下仅调用一次。

    解决方案是使用 Intent.ACTION_EDIT

    Intent intent = new Intent(Intent.ACTION_EDIT);
    

    因此,当“编辑器应用”完成其工作时,您将看到 第二次调用 FileProvider.openFile,模式为“rw”:
    -> 您自己的/local 应用程序文件 将被保存 ;-)

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-11-17
      • 2012-04-23
      相关资源
      最近更新 更多