ASP.NET Web API中使用GZIP 或 Deflate壓縮

來源:互聯網
上載者:User

標籤:style   blog   http   io   color   ar   使用   sp   div   

對於減少響應包的大小和響應速度,壓縮是一種簡單而有效方式。

那麼如何?對ASP.NET Web API 進行壓縮呢,我將使用非常流行的庫用於壓縮/解壓縮稱為DotNetZip庫。這個庫可以使用NuGet包擷取

現在,我們實現了Deflate壓縮ActionFilter。

public class DeflateCompressionAttribute : ActionFilterAttribute    {        public override void OnActionExecuted(HttpActionExecutedContext actContext)        {            var content = actContext.Response.Content;            var bytes = content == null ? null : content.ReadAsByteArrayAsync().Result;            var zlibbedContent = bytes == null ? new byte[0] :            CompressionHelper.DeflateByte(bytes);            actContext.Response.Content = new ByteArrayContent(zlibbedContent);            actContext.Response.Content.Headers.Remove("Content-Type");            actContext.Response.Content.Headers.Add("Content-encoding", "deflate");            actContext.Response.Content.Headers.Add("Content-Type", "application/json");            base.OnActionExecuted(actContext);        }    }public class CompressionHelper    {        public static byte[] DeflateByte(byte[] str)        {            if (str == null)            {                return null;            }            using (var output = new MemoryStream())            {                using (                    var compressor = new Ionic.Zlib.DeflateStream(                    output, Ionic.Zlib.CompressionMode.Compress,                    Ionic.Zlib.CompressionLevel.BestSpeed))                {                    compressor.Write(str, 0, str.Length);                }                return output.ToArray();            }        }    }

使用的時候

   [DeflateCompression]        public string Get(int id)        {            return "ok"+id;        }

當然如果使用GZIP壓縮的話,只需要將

new Ionic.Zlib.DeflateStream( 改為
new Ionic.Zlib.GZipStream(,然後

actContext.Response.Content.Headers.Add("Content-encoding", "deflate");改為
actContext.Response.Content.Headers.Add("Content-encoding", "gzip");
就可以了,經本人測試,
Deflate壓縮要比GZIP壓縮後的代碼要小,所以推薦使用Deflate壓縮

ASP.NET Web API中使用GZIP 或 Deflate壓縮

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.