Uri Builder 未在 Android 中添加端口号
每当我尝试将端口号添加到 JAVA 中的 URI.Builder 时,结果都会排除端口号。
Uri.Builder builder = Uri.parse("xxx.xxx.xx.xxx:11226").buildUpon();
builder.appendPath("login");
结果是 xxx.xxx.xx.xxx:/login
,这显然会导致 MalformedUrlException
。
如何使用 Uri.Builder 将 PORT 包含在我的 URI 中?
Whenever I try to add the port number to my URI.Builder in JAVA, the result excludes the Port number.
Uri.Builder builder = Uri.parse("xxx.xxx.xx.xxx:11226").buildUpon();
builder.appendPath("login");
And the result is xxx.xxx.xx.xxx:/login
which obviously results in MalformedUrlException
.
How can I include the PORT in my URI using Uri.Builder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,您忘记在字符串的 xx 部分添加 SCHEME 。在不知道该方案的情况下,解析器可能无法处理端口。
Java
Kotlin
希望有帮助。
It seems to me that you forget to add SCHEME in that xx part of your string. Parser may not handle ports without knowing the scheme.
Java
Kotlin
Hope, it helps.