一.Asp.Net 自带静态文件压缩工具包
Microsoft.AspNet.Web.Optimization
http://www.nuget.org/packages/Microsoft.AspNet.Web.Optimization/1.1.3
但好像没有提供可直接条用的压缩方法,并且再用mvc4.0的时候,同一个网站多个域名也出现了一些问题。于是有了下面
二.使用Yahoo for .Net 的压缩工具,Nuget包名称:YUICompressor.NET
Yahoo.Yui.Compressor.dll
Nuget包源码地址:http://yuicompressor.codeplex.com/documentation
Git源码地址:https://github.com/PureKrome/YUICompressor.NET
使用方法:
1.使用命令
Install-Package YUICompressor.NET
2.使用管理Nuget包工具
三、压缩方法使用
1.css
//读取Css文件并压缩另存文件
CssCompressor compressor = new CssCompressor();
Console.WriteLine("默认编码:" + compressor.ContentType);
string filename = @"L:\ABCSolution\StaticFile\StaticFile\Css\WLSite.css";
string newfilename = @"L:\ABCSolution\StaticFile\StaticFile\Css\WLSite.min.css"; string source = File.ReadAllText(filename);
source = compressor.Compress(source);
File.WriteAllText(newfilename, source);
2.Js
//Javascript 压缩
JavaScriptCompressor compressor = new JavaScriptCompressor();
Console.WriteLine("默认编码:" + compressor.Encoding.EncodingName);
Console.WriteLine("默认文件类型:" + compressor.ContentType);
//使用utf-8 编码文件
compressor.Encoding = Encoding.UTF8;
string filename = @"L:\ABCSolution\StaticFile\StaticFile\Js\cover3.0.js";
string newfilename = @"L:\ABCSolution\StaticFile\StaticFile\Js\cover3.0.min.js"; string source = File.ReadAllText(filename);
source = compressor.Compress(source);
File.WriteAllText(newfilename, source);
四、自开发压缩工具
工具软件下载:
51cto:http://down.51cto.com/data/2216496