利用Attribute和反射从模板生成短信
2009-06-01 08:31:01 来源:WEB开发网获取Key-Value的Helper类代码:
public class SmsGeneratorHelper
{
/// <summary>
/// 从短信实体获取要替换的键值对,用以替换短信模板中的变量
/// </summary>
/// <param name="objMessage">短信实体</param>
/// <returns></returns>
public static Dictionary<string, string> GetMessageKeyValue(object objMessage)
{
Type msgType = objMessage.GetType();
Dictionary<string, string> dicMsg = new Dictionary<string, string>();
Type typeDescription = typeof(DescriptionAttribute);
PropertyInfo[] proList = msgType.GetProperties();
string strKey = string.Empty;
string strValue = string.Empty;
foreach (PropertyInfo pro in proList)
{
//利用反射取得属性的get方法。
MethodInfo m = pro.GetGetMethod();
//利用反射调用属性的get方法,取得属性的值
object rs = m.Invoke(objMessage, null);
object[] arr = pro.GetCustomAttributes(typeDescription, true);
if (!(arr.Length > 0))
{
continue;
}
DescriptionAttribute aa = (DescriptionAttribute)arr[0];
strKey = aa.Description;
dicMsg.Add(strKey, rs.ToString());
}
return dicMsg;
}
}
测试代码:
Message msg = new Message() { UserName = "张三", Content = "祝你生日快乐",Date=DateTime.Now.ToString("yyyy-MM-dd")};
Dictionary<string,string> nvc = SmsGeneratorHelper.GetMessageKeyValue(msg);
string template = "[用户名],今天是[日期],[内容]";
Console.WriteLine("模板是:{0}", template);
foreach(KeyValuePair<string,string> kvp in nvc)
{
template = template.Replace(kvp.Key, kvp.Value);
}
Console.WriteLine("替换后的内容:{0}", template);
看到了吧,结果出来了,而那段恶心的代码“template.Replace("[用户名]", userName).Replace("[日期]", date).Replace("[内容]", content)”消失了。
如果有新模板了,直接写一个模板实体类,将里面的字段贴上[Description("xxx")]标签就可以很方便生成短信了。
至于如何给模板实体类赋值(具体业务的问题),那就不是本文讨论的范围了。
更多精彩
赞助商链接