java中uri找不到文件路径_如何从URI获取文件路径? [重复]

这个问题在这里已有答案:

请在下面找到我的代码 . 我需要获取用户从SDcard中选择的pdf文档的文件路径 . 问题是URI.getPath()返回:

/file:///mnt/sdcard/my%20Report.pdf/my Report.pdf

The correct path is :

/sdcard/my Report.pdf

Please note 我在stackoverflow上搜索但是找到了获取图像或视频的文件路径的示例, there is no example of how to get the filepath in case of PDF ?

My code , NOT all the code but only the pdf part :

public void openPDF(View v)

{

Intent intent = new Intent();

//intent.setType("pdf/*");

intent.setType("application/pdf");

intent.setAction(Intent.ACTION_GET_CONTENT);

startActivityForResult(Intent.createChooser(intent, "Select Pdf"), SELECT_PDF_DIALOG);

}

public void onActivityResult(int requestCode, int resultCode, Intent result)

{

if (resultCode == RESULT_OK)

{

if (requestCode == SELECT_PDF_DIALOG)

{

Uri data = result.getData();

if(data.getLastPathSegment().endsWith("pdf"))

{

String pdfPath = data.getPath();

}

else

{

CommonMethods.ShowMessageBox(CraneTrackActivity.this, "Invalid file type");

}

}

}

}

有人可以帮助我如何从URI获取正确的路径?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值