ASP.NET Web API中使用GZIP 或 Deflate压缩
2020-12-13 14:09
标签:style blog http io color ar 使用 sp div 对于减少响应包的大小和响应速度,压缩是一种简单而有效的方式。 那么如何实现对ASP.NET Web API 进行压缩呢,我将使用非常流行的库用于压缩/解压缩称为DotNetZip库。这个库可以使用NuGet包获取 现在,我们实现了Deflate压缩ActionFilter。 使用的时候 当然如果使用GZIP压缩的话,只需要将 ASP.NET Web API中使用GZIP 或 Deflate压缩 标签:style blog http io color ar 使用 sp div 原文地址:http://www.cnblogs.com/yxlblogs/p/4058888.htmlpublic 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;
}
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压缩
文章链接:http://soscw.com/essay/33747.html