如何在安卓中将路径转换为 Uri?



如何在安卓中将路径转换为 uri?我还想如何在安卓中创建 pdf 文件的缩略图?以及如何在服务器上上传pdf文件。

Intent intent = new Intent();
intent.setType("application/pdf");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Pdf"), PICK_PDF_REQUEST);

它用于抛出FileNotFoundException Exception和ENOENT Exception

使用 Uri.parse(( 或 Uri.fromFile((

https://developer.android.com/reference/android/net/Uri

一行代码:

Uri uri = Uri.fromFile(path);

Uri.fromFile(strPath( 它返回了字符串路径的 Uri

相关内容

  • 没有找到相关文章

最新更新