在我的应用程序中,我正在内部应用程序文件(数据/数据/包/文件)中创建一个 pdf 文件,我希望这些文件在使用以下代码读取它们时是可读的:
Uri path = Uri.fromFile(pdfFile);
Intent pdfIntent = new Intent(Intent.ACTION_VIEW);
pdfIntent.setDataAndType(path, "application/pdf");
pdfIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
我已阅读有关使用 openOutputStream() 方法的信息,但我不知道如何通过此阅读它们。有人可以帮助我吗?
编辑
pdf文件--
File directory=getFilesDir();
pdfFile=new File(directory,filename+".pdf");