C# Json多功能操作类 第三版

时间:2014-08-28 03:14:22
【文件属性】:

文件名称:C# Json多功能操作类 第三版

文件大小:72KB

文件格式:DLL

更新时间:2014-08-28 03:14:22

组合 添加 修改 删除 转换

using Jorben.Json; //组合Json字符串 JsonHelper json = new JsonHelper(false); string[] b = [ "a11", "a22", "a33" ]; json.Add("a", "11111"); json.Add("b", b); Response.Write(json.OutString); Response.Write("
"); //修改Json键值 json = new JsonHelper(); json.Add("a", "11111"); json.Add("a", "22222"); Response.Write(json.OutString); Response.Write("
"); //合并:将Json字符串合并到一起 json = new JsonHelper(false); string tempString = "{\"a33\":{\"888\":\"999\"}}"; json.Add("测试1", "测试11"); json.Merge(tempString); Response.Write(json.OutString); Response.Write("
"); //判断某个键是否存在 json = new JsonHelper(false); tempString = "{\"a33\":{\"888\":\"999\"}}"; json.Merge(tempString); Response.Write(json.ContainsKey("a33")); Response.Write("
"); //获取某个健值 json = new JsonHelper(false); tempString = "{\"ac\":\"11111\",\"b\":[\"a11\",\"a22\"]}"; json.Merge(tempString); Response.Write(json.Get("ac")); Response.Write("
"); //两个Json字符串进行合并 json = new JsonHelper(false); string jsonString = "{\"ac\":\"11111\",\"b\":[\"a11\",\"a22\"]}"; json.Merge(jsonString, tempString); Response.Write(json.OutString); -------------- 此版中增加并调整了很多的功能,比如对表格与Json的转换等等实用性功能 在此后版中会统一出一个工具类并包含对Json的操作类,近请期待~~~ 有任何问题请联系: QQ:6102341 topcoolge@qq.com 功能持久加强中....


网友评论

  • 还行吧,对于我们这些开发的来说,共享是进步的基石,谢谢
  • DLL类库,封装的代码是比较实用的,谢谢分享
  • 没有源码,且功能不够强大,满足不了项目需要
  • 不是源码,DLL文件也没函数注释。看着吃力
  • 不是源码,有点失望
  • 看不明白,不开源,学习的话用处不大,可以拿来用,最后还是没有用上呀
  • 开源就好了
  • 很好~虽然里面有点小BUG ~~可以自己修改~~
  • 太强大了,看得我有点晕,要是有个简单的说明更好!