我的应用下载并解压缩特定文件夹中的文件:

output = new FileOutputStream(realpath, true);
output.write(buffer, 0, bytesRead);

ZipFile zipFile = new ZipFile(realpath);

通过新引入的ACTION_OPEN_DOCUMENT_TREE Intent,我想为用户提供选择该文件夹的方法。

测试在onActivityResult中接收的值时,我得到一个类似于/tree/primary:mynewfolder的路径,而不是像/sdcard/mynewfolder这样的物理真实路径。
Uri treeUri = data.getData();
String sPath = treeUri.getPath();
Log.v("Path from Tree ", sPath);

我的解压缩方法需要真实路径:
ZipFile zipFile = new ZipFile(realpath);

如何从Lollipop(API 21和22)中提供的URI中获取像/sdcard/mynewfolder这样的真实路径?

最佳答案

从URI获取真实Path的过程与以前相同,但有一点点增加:

Uri uri = data.getData();
Uri docUri = DocumentsContract.buildDocumentUriUsingTree(uri,
                        DocumentsContract.getTreeDocumentId(uri));
String path = getPath(this, docUri);

可以在这里找到具有中间方法的getPath()方法的要点:getPath()

关于android - 如何使用ACTION_OPEN_DOCUMENT_TREE Intent获得真实路径?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29713587/

10-10 09:09