gpt4 book ai didi

android - 如何更改文件 URI 字符串

转载 作者:行者123 更新时间:2023-11-29 00:33:36 27 4
gpt4 key购买 nike

如何将 file:///system/media/lockscreen/lockscreen_001.jpg 更改为类似于/mnt/sdcard/myPicture.jpg
之所以要改,是想进一步处理的话file:///是错误的。很难说,但是如果我从 Uri uri= data.getData(); 得到 URIfile:///system/media/lockscreen/lockscreen_001.jpg,怎么处理,因为一般都是以mnt

开头

最佳答案

试试这个:

Uri uri = Uri.parse("file:///system/media/lockscreen/lockscreen_001.jpg");
Toast.makeText(getApplicationContext(), ""+uri.getPath(), Toast.LENGTH_LONG).show();

uri.getPath() 将通过消除 file: 扩展名为您提供路径。

编辑:

Uri urinew = Uri.parse(uri.getPath());

这将为您提供包含路径的新 uri。

希望对你有帮助。

谢谢。

关于android - 如何更改文件 URI 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13945460/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com