C# Newtonsoft.Json用法

源码地址:点击跳转

安装 Newtonsoft.Json,在NuGet 里直接搜索 Newtonsoft.Json

C# Newtonsoft.Json用法_第1张图片

下面介绍基本的几个使用方法 

1.C# 使用newtonsoft.json创建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());

2.C# 使用newtonsoft.json创建JSON数组

// 创建数组
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("吃饭", "睡觉");

3.C# 使用Linq to JSON查询

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());

4.序列化

public class Student
{
    public int ID { get; set; }
    public string Name { get; set; }
}

Student stu = new Student();
stu.ID = "1";
stu.Name = "ss";
//序列化为JSON
string json1 = JsonConvert.SerializeObject(stu);

5.反序列化

将json字符串反序列化成一个类的实例

public class Student
{
    public int ID { get; set; }
    public string Name { get; set; }
}

Student stu = new Student();
Student stu1 = JsonConvert.DeserializeObject(json1);

反序列化为JObject

string json = "{\"ID\":1,\"Name\":\"张三\",\"Favorites\":[\"吃饭\",\"睡觉\"]}";
 
JObject obj = JObject.Parse(json);

6.常用工具

在上面的json代码中都带有 “\” 字符,这个叫转义字符,一般直接写在代码中的json如果没有转义,会报错的,在这里给大家介绍一些Json相关的小工具。

1)常用工具

JSON在线 | JSON解析格式化—SO JSON在线工具

在这个网站中,可以判断 json 是否出错

C# Newtonsoft.Json用法_第2张图片

转义,就是在 json 中加入 “\”,这个在变量的定义时,会用到

C# Newtonsoft.Json用法_第3张图片

去转义,就是去掉 json 中的 “\”

C# Newtonsoft.Json用法_第4张图片  

压缩,是将自动对齐的 json 变为一行,并去掉空格,使字符串的字节数变小

C# Newtonsoft.Json用法_第5张图片

另外,推荐一个网站,可以将 json 转换为实体类

2)Json 转换为实体类

JSON转C#实体类-BeJSON.com

C# Newtonsoft.Json用法_第6张图片

输入json 就可以转换成对于的字段了,在我们做反序列化时,非常好用,不过,过于复杂的json,转换还是有点问题的,需要自己手动修改一下。

end

你可能感兴趣的:(C#,c#,json)