继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

重构Web Api程序

kala16
关注TA
已关注
手记 260
粉丝 18
获赞 134



有最后的4个私有方法中,其中有2个方法是实现序列化的,把List<T>序例后转存为json文件,另一个是把json文件反序列转换为泛型List<T>。



考虑到将来在专案中,还可以有可以引用或使用到它们。Insus.NET把它们再重构到一个全新的Utility类中:


void GenericListToJsonFile<T>(List<T> listT, string filePath)方法:

public static void GenericListToJsonFile<T>(List<T> listT, string filePath)        {            using (FileStream fs = File.Open(filePath, FileMode.CreateNew))            using (StreamWriter sw = new StreamWriter(fs))            using (JsonWriter jw = new JsonTextWriter(sw))            {                jw.Formatting = Formatting.Indented;                JsonSerializer serializer = new JsonSerializer();                serializer.Serialize(jw, listT);            }        }

View Code


List<T> JsonFileToGenericList<T>(string filePath)函数:

public static List<T> JsonFileToGenericList<T>(string filePath)        {            List<T> listT = new List<T>();            if (File.Exists(filePath))                listT = IoDeserialize<T>(filePath);            else            {                string physicalPath = HttpContext.Current.Server.MapPath(filePath);                if (File.Exists(physicalPath))                    listT = IoDeserialize<T>(physicalPath);            }            return listT;        }

View Code


私有 List<T> IoDeserialize<T>(string filePath)函数:

 private static List<T> IoDeserialize<T>(string filePath)        {            using (StreamReader sr = new StreamReader(filePath))            {                JsonTextReader jtr = new JsonTextReader(sr);                JsonSerializer se = new JsonSerializer();                object obj = se.Deserialize(jtr, typeof(List<T>));                return (List<T>)obj;            }        }

View Code

 

这样在OrderEntity.cs类别中,我们就可以删除下面2个方法或是函数:



在相对应的引用此私有方法的代码,需要修改为JsonUtility.cs的方法:

 
下列内容于2015-03-23 11:00分补充与完善:
《重构Web Api程序(Api Controller和Entity) 续篇(1)》http://www.cnblogs.com/insus/p/4359733.html

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP