[转载]MVC2.0本地化(另类解决方案) – RyanDing – 博客园.
前不久看见一篇文章:在ASP.NET中使用Response.Filter 过滤网站敏感字符的解决方案。于是我借题发挥用Response.Filter 为MVC2.0 进行多国语言本地化。如果存在不足的地方,希望您指出。
本文主要给出具体思路,希望能给读者带来一定的启发:日常开发中不是所有的方案要中规中矩用常用方法解决问题。比如本文的本地化就不用resource文件来处理。
具体步骤:
一、建立自定义的LocalizationHandler类
LocalizationHandler 继承System.IO.Stream类 ,LocalizationHandler实例化后赋值给Response.Filter。这里主要通过Response.Filter来本地化MVC2.0程序。具体的Response.Filter 用法请参看MSDN.代码如下:
001 |
public class LocalizationHandler : Stream |
004 |
private Stream responseStream; |
007 |
public LocalizationHandler(Stream inputStream) |
009 |
responseStream = inputStream; |
012 |
public override bool CanRead |
017 |
public override bool CanSeek |
022 |
public override bool CanWrite |
027 |
public override void Flush() |
029 |
responseStream.Flush(); |
032 |
public override long Length |
038 |
public override long Position |
050 |
public override int Read( byte [] buffer, int offset, int count) |
052 |
return responseStream.Read(buffer, offset, count); |
055 |
public override long Seek( long offset, SeekOrigin origin) |
057 |
return responseStream.Seek(offset, origin); |
060 |
public override void SetLength( long value) |
062 |
responseStream.SetLength(value); |
065 |
public override void Write( byte [] buffer, int offset, int count) |
067 |
string sBuffer = System.Text.UTF8Encoding.UTF8.GetString(buffer, offset, count); |
068 |
string pattern = @"(<|<)=(.*?)(>|>)" ; |
069 |
sBuffer = Regex.Replace(sBuffer, pattern, delegate (Match c) |
071 |
return ReadLocalizationResource().FirstOrDefault(d => d.Key == c.Groups[2].Value).Value; |
074 |
ReadLocalizationResource(); |
075 |
byte [] data = System.Text.UTF8Encoding.UTF8.GetBytes(sBuffer); |
076 |
responseStream.Write(data, 0, data.Length); |
079 |
ObjectCache cache = MemoryCache.Default; |
080 |
private Dictionary< string , string > ReadLocalizationResource() |
082 |
string _XMLPath = "" ; |
084 |
Dictionary< string , string > cacheData = null ; |
085 |
if (cacheData != null ) |
089 |
Dictionary< string , string > cachedData = new Dictionary< string , string >(); |
091 |
string serverPath = System.Web.HttpContext.Current.Server.MapPath( "~" ); |
092 |
_XMLPath = Path.Combine(serverPath, "LocalizationResource.xml" ); |
095 |
if (cache[ "myCache" ] == null ) |
097 |
CacheItemPolicy policy = new CacheItemPolicy(); |
098 |
policy.SlidingExpiration = TimeSpan.FromMinutes(60); |
099 |
policy.ChangeMonitors.Add( new HostFileChangeMonitor( new List< string > { _XMLPath })); |
101 |
var items = XElement.Load(_XMLPath).Elements( "Module" ).Elements( "item" ); |
102 |
foreach (var item in items) |
104 |
string key = item.Attribute( "name" ).Value; |
105 |
string value = item.Value; |
106 |
cachedData.Add(key, value); |
108 |
cache.Set( "myCache" , cachedData, policy); |
114 |
return (Dictionary< string , string >)cache[ "myCache" ]; |
代码中的65行开始,是本地化核心代码,在这里我们用正则匹配文本。用.NET4.0 System.Runtime.Caching;(尝鲜)缓存机制提高程序执行效率。
二、修改global.asax文件
在global.asax中加入以下代码:
1 |
protected void Application_BeginRequest(Object sender, EventArgs e) |
3 |
Response.Filter = new LocalizationHandler(Response.Filter); |
三、建立自定义的XML本地化资源文件
截图如下:
OK,一切准备就绪,我们在不用Response.Filter 过滤的情况下,运行截图如下:
使用上文中Response.Filter过滤后:
结果将第三点中的XML作为传统的资源文件后本地化了MVC View 页面。
四、小结
本文用另外一套方案解决了MVC2.0程序的本地化问题,也适用于ASP.NET webform。同时本文还存在很多不足的地方,比如后台异步的JSON格式本地化、用户自定义本地化语言等将会在MVC2.0本地化(另类解决方 案)<下> 文中得到完善。