我在 Uri.parse 函数中使用 .asx 链接,但它不起作用
Uri myUri = Uri.parse("http://www.munichshardesthits.com/ondem/timeless%20rock.asx");
我在解析函数中使用 .asx 链接,但它不起作用。 基本上,我想让 .asx 链接在这里工作。
请帮忙。
Uri myUri = Uri.parse("http://www.munichshardesthits.com/ondem/timeless%20rock.asx");
I am using .asx link in the parse function and it is not working.
Basically,I want to make .asx link work here.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑
它可能更可能不支持 '%20' 转义的空格字符。
有效的 Uri 不能包含“%”字符。
参见'2.4.3。此处排除了 US-ASCII 字符:
https://www.rfc-editor.org/rfc/ rfc2396
EDIT
It may be more likely that it does not support the space character which is what '%20' escapes.
A valid Uri cannot contain the '%' character.
See '2.4.3. Excluded US-ASCII Characters' here:
https://www.rfc-editor.org/rfc/rfc2396