android httprequest压缩响应

时间:2010-01-14 10:03:20

标签: android compression response httprequest

我正在使用httprequest从webservice中检索数据,我知道使用tomcat我们可以使用gunzip算法来压缩响应数据。

但如何解压缩要显示的数据,解压缩是否耗时?有没有其他方法来压缩响应和解压缩android ???

1 个答案:

答案 0 :(得分:1)

an example on the Apache website showing how to do gzip decompression with HTTPRequest and DefaultHTTPClient。 (您可以找到HTTPClient示例here的完整列表。)

至于耗时多长时间,找到数据的最佳方法是在应用中分析处理压缩和未压缩数据。使用the traceview tool非常容易。