Android 中的等效类

发布于 2024-10-25 03:51:32 字数 77 浏览 1 评论 0原文

android 中是否有等效的 NSURLRequest (iOS)?那么我可以扩展我的类并获取实用方法吗?谢谢。

Is there and equivalent NSURLRequest (iOS) in android? So i can extend my class and gets the utility methods? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

梦言归人 2024-11-01 03:51:32

Apache HTTPClient 在 Eclair 和 Froyo 上的错误较少。它是这些版本的最佳选择。

并且根据android团队的说法你应该使用< a href="http://developer.android.com/reference/java/net/HttpURLConnection.html" rel="nofollow">HttpURLConnection on Gingerbread 及更好。
它有一个非常有用的 API,对于开发网络客户端应用程序很有用。它改进了 Android 2.3 及更高版本上的响应缓存和压缩技术。这可以减少网络使用、提高速度并节省电池。

Apache HTTPClient has fewer bugs on Eclair and Froyo. It is the best choice for these releases.

And according to the android team you should be using HttpURLConnection on Gingerbread and better.
It has a pretty useful API that is just useful to develop a networking client application. It has improved response caching and improved compression technique on Android 2.3 and above. That reduces network use, improves speed and saves battery.

留一抹残留的笑 2024-11-01 03:51:32

您可能正在寻找 AndroidHttpClient

You may be looking for AndroidHttpClient.

自由如风 2024-11-01 03:51:32

我没有为 iOS 开发过,但是看看 NSURLRequest 的摘要,我想您可能会通过 URL 类来完成: http://developer.android.com/reference/java/net/URL.html

I've not developed for iOS but looking at the summary of NSURLRequest I think you'll probably get by with the URL class: http://developer.android.com/reference/java/net/URL.html

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