从 android/java 中的 URL 获取特定数据?
我有一个像这样的网址
我需要从 URL 获取文件路径 /mnt/sdcard/video 。我该怎么做? 我使用 URL 解码器来删除空格,但我对获取文件的路径感到困惑。 感谢您的帮助。
I have a url like this
I need to get the path of file as /mnt/sdcard/video from the URL . How do i do that ?
I used URL decoder to remove the spaces but i am confused on getting the path of the file .
Thanks for all your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Uri.getQueryParameter()。
Use Uri.getQueryParameter().
您可以使用
Uri
类 来完成此操作。构造一个Uri
对象并使用Uri.getQueryParameter()
。You can do it with the
Uri
class. Construct aUri
object and useUri.getQueryParameter()
.