(一).功能
当一个系统有了一定规模,可能要销售到国外其它国家,这时候要实现多种资源文件.
本代码示例将介绍怎样实现: 一个系统同时具有简体,繁体,英文等不同资源文件.
实现原理:
将多资源文件存储在多个*.txt文件(例如cn.txt en.txt等)中,程序根据当前当前浏览器
语言设置 读取相应的资源文件
(二).具体步骤如下
1. 创建一个资源文件
a.建立一个记事本文件: a.txt,并在里面写入: _name=姓名
b.选"文件"->"另存为"->在弹出窗口最下面的"编码"格式栏选择需要保存的格式:
unicode 或 unicode big endian 或 uif-8,
不要选择ansi编码格式(否则,读取的时候会检索不到资源,我实验的时候输出了一个:"?")
2. 编译资源文件
打开dos窗口运行命令:
c:/program files/microsoft visual studio .net 2003/sdk/v1.1/bin/resgen c:/inetpub/wwwroot/多种资源文件/resource/a.txt
注意一点: 路径要修改为您自己的文件实际路径
运行后会在a.txt的当前文件夹下面生成一个资源文件: a.resources
系统在运行时就是动态读取a.resources文件来显示不同资源文件的,就像我们在编程时
写的代码为*.cs文件,计算机只认识*.cs编译后的*.aspx.resx一样
(三).代码
经过(二)步骤之后,就可以运行代码了.
主要操作资源文件类代码如下:
using system;
using system.resources;
using system.globalization;
namespace 多种资源文件
{
/// <summary>
/// class1 的摘要说明。
/// </summary>
class resourceclass
{
/// <summary>界面资源对象</summary>
public resourcemanager myresmanager;
/// <summary>界面区域对象对象</summary>
protected cultureinfo myculture;
protected string strpath = @"c:/inetpub/wwwroot/多种资源文件/resource"; //这里要修改成自己的实际路径
public string strlangstring = "zh-cn";
public resourceclass()
{
// 建立資源管理器实例
this.myresmanager = resourcemanager.createfilebasedresourcemanager("a",this.strpath,null);
// 建立区域实例
this.myculture = new cultureinfo(this.strlangstring);
}
public string getresource(string strkey)
{
string strvalue = "";
strvalue = myresmanager.getstring(strkey,myculture);
return strvalue;
}
public static string getbrowserdefaultlanguage(string strlangstring) // "zh-cn,zh-tw;q=0.5"
{
try
{
int[] intlang = new int[3];
intlang[0] = strlangstring.indexof("zh-tw");
intlang[1] = strlangstring.indexof("zh-cn");
intlang[2] = strlangstring.indexof("en");
int intmin = 0;
if(intlang[0] != -1 && intlang[1] != -1){intmin = math.min(intlang[0],intlang[1]);}
if(intlang[2] != -1){intmin = math.min(intmin,intlang[2]);}
if(intmin == intlang[0]) // 繁体中文.
{
return ("zh-tw");
}
else if(intmin == intlang[1]) // 简体中文.
{
return ("zh-cn");
}
else // 英文.
{
return ( "en");
}
}
catch
{
return ( "zh-cn"); //简体中文
}
}
}
}
(四).设置浏览器当前区域资源类型
选浏览器中的菜单:"工具"->"选项"->“常规”选项卡->"语言",选择语言.
选择好后,程序就会自动读取当前浏览器设置的资源文件进行显示不同的文件.
上面只建立了一个a.txt文件,读者可以根据需要分别建立多个不同的资源文件
来建立更多的资源文件
例如: chinese.txt文件中显示: _name=姓名
english.txt文件中显示: _name=name 等,甚至可以建立任何语言资源文件
新闻热点
疑难解答