我已经创建了一个应用程序,其中我假设ID打开了一个pdf文件,但现在是
pdfFile File = new File (Environment.getExternalStorageDirectory () "/ storage/sdcard0 /" + item.getID () + ". pdf ")
所以我把它放在手机上,但我怎么能把它扔进应用程序,以便我可以用pdf文件分享?已尝试在资源下制作assets
,但无法查看手机上的位置,因此可以将/ storage/sdcard0 /
更改为该位置
答案 0 :(得分:0)
请提供更多详情 - 您想检查文件存在并采取必要的措施吗?然后你可以按照以下步骤进行操作 -
File file = new File(Environment.getExternalStorageDirectory () "/ storage/sdcard0 /" + item.getID () + ". pdf ");
if(file.exists())
{
// do what you want
}