Android 应用程序无法使用 WIMAX/4G 连接
我有一个 Android 应用程序,它使用 URLConnection 连接到 REST 服务并获取一些内容。我收到大量抱怨,称它无法通过 WiMAX 等 4G 连接运行,尽管它在 WiFi 或 3G 连接上运行良好。在尝试 REST 请求以允许其使用 4G 连接之前,我需要做什么特别的事情吗?我使用的是安卓2.2。
PS:这很难测试,因为我只有 Droid 和 HTC Hero 可以使用。
I have an Android application that uses URLConnection to connect to a REST service and gets some content. I am getting a ton of complaints that it doesn't work over a 4G connection like WiMAX, though it works fine over WiFi or 3G connections. Is there anything special I have to do before attempting the REST request to allow it to use the 4G connection? I am using Android 2.2.
PS: This is very hard to test as I only have Droid and a HTC Hero to work with.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些类型的 Android 问题很难调试,因为平台众多、变量众多。
我唯一能想到的是,由于某种原因,超过 4G(如 Sprint)的服务器 DNS 未注册,因此请使用 RESTful 服务,如 http ://www.hello.com 未解析为您的实际服务器 IP。
因为除此之外,它为什么可以在 3G/WIFI 上工作而不能在 4G 上工作,这是没有意义的。
These types of Android problems are difficult to debug as there are so many platforms and so many variables.
The only thing I can think of is that for some reason over 4G like Sprint your servers DNS is not registered so hitting your RESTful service like http://www.hello.com is not resolving to your actual server IP.
Because other than that it makes no sense why it would work on 3G/WIFI but not 4G.