我在 Uri.parse 函数中使用 .asx 链接,但它不起作用

发布于 2024-10-31 15:32:08 字数 161 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

轮廓§ 2024-11-07 15:32:08

编辑

它可能更可能不支持 '%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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文