Json数据解析(重点网址推荐:www.json.org code.google.com/ https://www.json.com/) 1:什么是Json? 2:Json数据格式的特点? 3:使用Gson解析Json数据 (1)Json:Javascript Object Notation; JSON is a light-weight text-based open standard designed for human-readable data. It is the most w
Json解析类 定义两个辅助类 public class JSONObject : Dictionary<string, object> { } public class JSONArray : List<object> { } 琮义两个辅助类 序列化 public static class JSONConvert { #region 全局变量 private static JSONObject _json = new JSONObject();//寄存器 private st