"Reprint" HttpWebRequest Open gzip Compression introduction

Source: Internet
Author: User

When using the HttpWebRequest object, generally we do not turn on gzip compression, if the server returns the data is relatively large, this is we need to turn on gzip compression, how to open it?

1. To the HttpWebRequest object, add the following header:

request. Headers.add ("accept-encoding", "gzip");

2. Decode the received stream:

Private stringGetresponsebody (HttpWebResponse response) {stringResponsebody =string.    Empty; if(Response. Contentencoding.tolower (). Contains ("gzip")) {using(GZipStream stream =NewGZipStream (response. GetResponseStream (), compressionmode.decompress)) {using(Streamreaderreader =NewStreamReader (Stream)) {Responsebody=Reader.            ReadToEnd (); }        }    }    Else if(Response. Contentencoding.tolower (). Contains ("deflate"))    {        using(Deflatestream stream =NewDeflatestream (response. GetResponseStream (), compressionmode.decompress)) {using(StreamReader reader =NewStreamReader (Stream, Encoding.UTF8)) {Responsebody=Reader.            ReadToEnd (); }        }    }    Else    {        using(Stream stream =Response. GetResponseStream ()) {using(StreamReader reader =NewStreamReader (Stream, Encoding.UTF8)) {Responsebody=Reader.            ReadToEnd (); }        }    }    returnresponsebody;}

Transferred from: http://www.csharpwin.com/csharpspace/13345r5893.shtml

"Reprint" HttpWebRequest Open gzip Compression introduction

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.