android http请求压缩响应
我正在使用 httprequest 从 web 服务检索数据,我知道使用 tomcat 我们可以使用gunzip 算法压缩响应数据。
但是如何解压缩数据来显示,解压缩很费时间吗?还有其他方法可以在 Android 上压缩响应并解压缩吗???
I am using httprequest to retrieve data from webservice, i know using tomcat we can compress response data using gunzip algo.
but how can uncompress data to display, is un-compress is time consuming?? is there any other way to compress response and uncompress on android ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有 Apache 网站上的示例,展示如何使用
HTTPRequest
和DefaultHTTPClient
进行 gzip 解压缩。 (您可以在此处找到HTTPClient
示例的完整列表.)至于它有多耗时,找出数据的最佳方法是分析应用程序中处理压缩和未压缩数据的情况。使用
可以很容易地做到这一点>traceview
工具。There's an example on the Apache website showing how to do gzip decompression with
HTTPRequest
andDefaultHTTPClient
. (You can find the full list ofHTTPClient
examples here.)As for how time consuming it is, the best way to find this out for your data is to profile the processing compressed and uncompressed data in your app. This is pretty easy to do with the
traceview
tool.