赞
踩
目录
源码地址:点击跳转
在NuGet 里直接搜索 Newtonsoft.Json,点击安装即可
- JObject staff = new JObject();
- staff.Add(new JProperty("Name", "Jack"));
- staff.Add(new JProperty("Age", 33));
- staff.Add(new JProperty("Department", "Personnel Department"));
- staff.Add(new JProperty("Leader", new JObject(new JProperty("Name", "Tom"), new JProperty("Age", 44), new JProperty("Department", "Personnel Department"))));
- Console.WriteLine(staff.ToString());
- // 创建数组
- JArray array = new JArray();
- array.Add(new JValue("吃饭"));
- array.Add(new JValue("睡觉"));
- obj.Add("Favorites", array);
- obj.Add("Remark", null);
-
- Console.WriteLine(array.ToString());
上面代码可以简化成:
JArray array = new JArray("吃饭", "睡觉");
- string json = "{\"Name\" : \"Jack\", \"Age\" : 34, \"Colleagues\" : [{\"Name\" : \"Tom\" , \"Age\":44},{\"Name\" : \"Abel\",\"Age\":29}] }";
- //将json转换为JObject
- JObject jObj = JObject.Parse(json);
- JToken ageToken = jObj["Age"];
- Console.WriteLine(ageToken.ToString());
- public class Student
- {
- public int ID { get; set; }
- public string Name { get; set; }
- }
-
- Student student = new Student();
- student.ID = "1";
- student.Name = "jack";
-
- //序列化为JSON
- string json = JsonConvert.SerializeObject(student);
将 Json 字符串反序列化成一个类对象
- public class Student
- {
- public int ID { get; set; }
- public string Name { get; set; }
- }
-
- string json = ".....";
- Student student = JsonConvert.DeserializeObject<Student>(json);
将 Json 字符串反序列化为 JObject
- string json = "{\"ID\":1,\"Name\":\"张三\",\"Favorites\":[\"吃饭\",\"睡觉\"]}";
-
- JObject obj = JObject.Parse(json);
在上面的json代码中都带有 “\” 字符,这个叫转义字符,一般直接写在代码中的json如果没有转义,会报错的,在这里给大家介绍一些Json相关的小工具。
JSON在线 | JSON解析格式化—SO JSON在线工具
在这个网站中,可以判断 json 是否出错
转义,就是在 json 中加入 “\”,这个在变量的定义时,会用到
去转义,就是去掉 json 中的 “\”
压缩,是将自动对齐的 json 变为一行,并去掉空格,使字符串的字节数变小
另外,推荐一个网站,可以将 json 转换为实体类
输入json 就可以转换成对于的字段了,在我们做反序列化时,非常好用,不过,过于复杂的json,转换还是有点问题的,需要自己手动修改一下。
end
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。