C#Css/Js靜態檔案壓縮--Yui.Compressor.Net

來源:互聯網
上載者:User

標籤:

一.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/2215285

csdn:http://download.csdn.net/detail/u011127019/9512366

工具git原始碼:http://git.oschina.net/tiama3798/CompressorTool

C#Css/Js靜態檔案壓縮--Yui.Compressor.Net

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.