Android Content URI: How to Get the File URI
In this blog post we are going to look at how we can pick file in Android without messing with Content URI. If you are just beginning with Android. You will notice that you will get a content:// URI after you do Intent.ACTION_OPEN_DOCUMENT . But this URI is useless if you want to lets say send file to server. To overcome this you have to either use a file picker library or manually check each type and try to get the actual location.
But there’s actually another much more easier and efficient way of doing this. But every way it has it’s disadvantages. We will look at it one by one. I’ll list when it might not be idle to use this approach.
Introduction to Storage Access Framework ( SAF )
Storage Access Framework or SAF is a newer approach to accessing the files in Android device. Not only local files but you can also access the online storage provider such as Google Drive.
It is an easy and centralized way to access everything in your device from multiple providers. Let us look at the image below.
Taken from Documentation
We have client that can either create or access the existing file from any one of the listed providers after doing Intent.ACTION_OPEN_DOCUMENT or Intent.ACTION_CREATE_DOCUMENT . We will be only looking at opening files in this post.
But SAF comes with its own challenge of not exposing the actual URI. Which is very good from security perspective as it limits the interactions. But how do we get the file to upload it somewhere or do something with it withing our own application ?
This post will exactly do that. We will pick file in Android and not worry about the Content URI. Let us quickly see what we are going to do before we actually do anything.
Our strategy to using SAF
Let us see what we can do to use SAF. We will follow the following steps to utilizing the framework.
- Open the system’s document picker
- Get the Content URI for the selected file(s)
- Copy the contents of file to cache directory
- Use the cached version of the file
- Clear the cache after the operation completes
Those are the steps to using the SAF. We will be following the listed approach to accomplish the task.
Limitations and disadvantages of this approach
It might not be ideal to always use this approach specially because we will be caching a copy to be used locally by our application.
Which will quickly grow the applications cache size. But if you think this will not be an issue with your current project. Then you can use it without any side effects at all.
Also this approach will not work if you want to directly modify the source file rather than a locally cached version. But it’s worth noting that this approach will download the file from remote server which might be advantageous in certain cases.
I was using this approach because I had to send some data via Rest API to remote server. Let us begin.
Opening system’s file picker
We can open the system’s UI for picking the document. Where we can either pick a single file or pick multiple files. We will look at both approaches. There is only a slight difference in picking a single file or multiple file.
We have this object which will help us show a system document picker. Briefly explained below.
showPicker method will show the picker UI and the result will be passed on to onActivityResult from the Activity or Fragment ‘s onActivityResult .
If you look closely you will see that there is OnActionComplete interface which has methods that will be invoked after the completion of the specific action.
But how will you use the above object ? See this snippet for showing the file picker
And for handling the result pass it from the onActivityResult callback.
We have successfully completed the selection action. Let us look at how we can copy the file locally in cache.
Caching the file from the URI
Look at this class named FileCache which has all the required methods to copy files from content:// URI.
It shouldn’t be too hard to understand what’s going on as I have commented major portions of the code.
This code will copy all the files from source to app’s mContext.cacheDir which can be queried later by listing files from there.
Let us finally see how we can combine everything in our MainActivity.
Wrapping everything up
Now that we have completed major portions of the code. Let us see how we can actually use it in our MainActivity .
The code for the design activity_main.xml .
And our final MainActivity looks like
Now that is all that we had to do. Everything should be available in the cache directory of the application.
What do you think about this approach to getting android content from content URI without converting it to file URI ?
Источник
Преобразование файла: Uri в файл в Android
какой самый простой способ конвертировать из file: android.net.Uri до File В Android?
пробовал следующее, Но это не работает:
15 ответов
то, что вы хотите.
Примечание: uri.toString() возвращает строку в формате: «file:///mnt/sdcard/myPicture.jpg» , тогда как uri.getPath() возвращает строку в формате: «/mnt/sdcard/myPicture.jpg» .
после долгого поиска это то, что сработало для меня:
EDIT: Извините, я должен был протестировать лучше раньше. Это должно сработать:
ничего из этого не работает для меня. Я нашел это рабочим решением. но мой случай специфичен для изображений.
непосредственно и скопируйте файл. См. также:
С Котлином еще проще:
Я сделал это следующим образом:
поэтому в основном сначала я пытаюсь использовать файл, т. е. снимок, сделанный камерой и сохраненный на SD-карте. Это не работает для изображения возвращаемых: Intent photoPickerIntent = новое намерение(намерение.ACTION_PICK); В этом случае необходимо преобразовать Uri в реальный путь по
@CommonsWare объяснил все вещи довольно хорошо. И мы действительно должны использовать предложенное им решение.
кстати, только на информацию мы могли положиться, когда quering ContentResolver — Это имя и размер файла, как указано здесь: получение информации о файле / разработчики Android
как вы могли видеть, есть интерфейс OpenableColumns который содержит только два поля: DISPLAY_NAME и SIZE.
в моем случае мне нужно было получить информацию EXIF о JPEG изображение и повернуть его, если это необходимо перед отправкой на сервер. Для этого я скопировал содержимое файла во временный файл с помощью ContentResolver и openInputStream()
Лучшим Решением
создайте один простой класс java FileUtil и используйте для создания, копирования и переименования файла
Я использую uri.toString() и uri.getPath() но не работает для меня. Я наконец нашел решение.
пользовательский класс FileUtil в вашем коде
вы можете получить файл из файла Uri, используя следующий метод. Он DocumentFile для параметра, но вы можете легко изменить его. Самый простой способ проверить этот метод для создания файла uri с помощью DocumentFile.fromFile(Environment.getExternalStorageDirectory()); который имеет Uri file:///storage/emulated/0
вместо создания файлов из Uri используйте DocumentFile.fromTreeUri(Context, Uri) или DocumentFile.fromSingleri(Context, Uri) для создания или удаления файлов и для потоков используйте getContentResolver().openOutputStream(documentFile.getUri()) и getContentResolver().openInputStream(documentFile.getUri()) для записи файлов и чтения файлов.
публичная строка getRealPathFromURI(Uri uri) <
затем, используя для получения файла из URI:
— НАДЕЖДА МОЖЕТ ПОМОЧЬ ВАМ — — — —
Android + Котлин
добавить зависимость для расширений Kotlin Android:
получить файл из uri:
Android + Java
просто переместить наверх 😉
следующим кодом я могу получить общий pdf-файл adobe application в виде потока и сохранить его в путь приложения android
для людей, которые ищут решение для изображений в частности вот это.
Источник