C#解析Json

Posted 一维可陈100

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#解析Json相关的知识,希望对你有一定的参考价值。

第一、解析JSON数据

工具:Newtonsoft.Json 类库/dll

目前我用到解析json数据的就只用到这个类库,用这个类库可以很方便的对于C#和JSON直接进行序列化和反序列化解析

首先我在本地文本文件txt复制了网上一段写好的json数据如下图(该txt文件路径是保存在d盘中):

好了,接下来我们就来解析这个txt文本格式的json数据吧!为了好演示我就直接新建一个控制台代码如下

using System;using System.Collections.Generic;using System.Linq;using System.Text;usingSystem.Threading.Tasks;using Newtonsoft.Json;using System.IO;usingNewtonsoft.Json.Linq;namespace ConsoleApplication1{ class Program { static voidMain(string[] args) { JsonSerializer serializer new JsonSerializer(); using (StreamReader reader=new StreamReader(@"d:\json.txt")) using (JsonReader jsreader=newJsonTextReader(reader)) { JObject jo = (JObject)serializer.Deserialize(jsreader);//对于json的反序列化再转化为JObject Console.WriteLine(jo.ToString()); } Console.Read(); } }}

运行结果:

C#解析Json

二、Linq To Json

linq to json的主要类:

1.JObejct :用于操作json的对象

2.JArray: 用来操作json数组

3.JValue :数组中的值

4.JProperty: json对象的属性,通常以key和value类似于字典形式存在

5.JToken :用于存放linq查询的结果值

下面稍微演示下用法,用JObejct创建json数据并且输出代码如下:

using System;using System.Collections.Generic;using System.Linq;using System.Text;usingSystem.Threading.Tasks;using Newtonsoft.Json;using System.IO;usingNewtonsoft.Json.Linq;namespace ConsoleApplication1{ class Program { static voidMain(string[] args) { JObject jo new JObject(); jo.Add(new JProperty("name""张惠妹")); jo.Add(new JProperty("sex""")); jo.Add(new JProperty("age""32")); jo.Add(newJProperty("teachar"new JObject(new JProperty("name""张雨生"), new JProperty("sex"""), new JProperty("age""30")))); Console.WriteLine(jo.ToString()); Console.ReadLine(); } }}

C#解析Json

在这个基础上代码再改下:

using System;using System.Collections.Generic;using System.Linq;using System.Text;usingSystem.Threading.Tasks;using Newtonsoft.Json;using System.IO;usingNewtonsoft.Json.Linq;namespace ConsoleApplication1{ class Program { static voidMain(string[] args) { JObject jo new JObject(); jo.Add(new JProperty("name""张惠妹")); jo.Add(new JProperty("sex""")); jo.Add(new JProperty("age""32")); jo.Add(newJProperty("teachar"new JObject(new JProperty("name""张雨生"), new JProperty("sex"""), new JProperty("age""30")))); JToken Tteacher = jo["teachar"]; Console.WriteLine(Tteacher.ToString()); Console.ReadLine(); } }}

C#解析Json

由此可以知道JToken返回的其实是对应key的value部分,再来用linq to json,首先准备一字符串,用linq 查询王力宏的朋友的名字:

using System;using System.Collections.Generic;using System.Linq;using System.Text;usingSystem.Threading.Tasks;using Newtonsoft.Json;using System.IO;usingNewtonsoft.Json.Linq;namespace ConsoleApplication1{ class Program { static voidMain(string[] args) { string jsonstr= "{\"Name\" : \"王力宏\", \"Age\" : 34, \"friends\" : [{\"Name\" : \"林俊杰\" , \"Age\":30},{\"Name\" : \"张惠妹\",\"Age\":29}] }"; JObject jo =JObject.Parse(jsonstr); var a = from b in jo["friends"].Children() select (string) b["Name"];foreach (var item in a) { Console.WriteLine(item); } Console.Read(); } }}

C#解析Json

简单地对于Json的解析就介绍到这里了。。。有什么不对的地方或者需要改正的地方请大牛们指正第一、解析JSON数据

工具:Newtonsoft.Json 类库/dll

目前我用到解析json数据的就只用到这个类库,用这个类库可以很方便的对于C#和JSON直接进行序列化和反序列化解析

首先我在本地文本文件txt复制了网上一段写好的json数据如下图(该txt文件路径是保存在d盘中):

C#解析Json

好了,接下来我们就来解析这个txt文本格式的json数据吧!为了好演示我就直接新建一个控制台代码如下

using System;using System.Collections.Generic;using System.Linq;using System.Text;usingSystem.Threading.Tasks;using Newtonsoft.Json;using System.IO;usingNewtonsoft.Json.Linq;namespace ConsoleApplication1{ class Program { static voidMain(string[] args) { JsonSerializer serializer new JsonSerializer(); using (StreamReader reader=new StreamReader(@"d:\json.txt")) using (JsonReader jsreader=newJsonTextReader(reader)) { JObject jo = (JObject)serializer.Deserialize(jsreader);//对于json的反序列化再转化为JObject Console.WriteLine(jo.ToString()); } Console.Read(); } }}

运行结果:

C#解析Json

二、Linq To Json

linq to json的主要类:

1.JObejct :用于操作json的对象

2.JArray: 用来操作json数组

3.JValue :数组中的值

4.JProperty: json对象的属性,通常以key和value类似于字典形式存在

5.JToken :用于存放linq查询的结果值

下面稍微演示下用法,用JObejct创建json数据并且输出代码如下:

using System;using System.Collections.Generic;using System.Linq;using System.Text;usingSystem.Threading.Tasks;using Newtonsoft.Json;using System.IO;usingNewtonsoft.Json.Linq;namespace ConsoleApplication1{ class Program { static voidMain(string[] args) { JObject jo new JObject(); jo.Add(new JProperty("name""张惠妹")); jo.Add(new JProperty("sex""")); jo.Add(new JProperty("age""32")); jo.Add(newJProperty("teachar"new JObject(new JProperty("name""张雨生"), new JProperty("sex"""), new JProperty("age""30")))); Console.WriteLine(jo.ToString()); Console.ReadLine(); } }}

C#解析Json

在这个基础上代码再改下:

using System;using System.Collections.Generic;using System.Linq;using System.Text;usingSystem.Threading.Tasks;using Newtonsoft.Json;using System.IO;usingNewtonsoft.Json.Linq;namespace ConsoleApplication1{ class Program { static voidMain(string[] args) { JObject jo new JObject(); jo.Add(new JProperty("name""张惠妹")); jo.Add(new JProperty("sex""")); jo.Add(new JProperty("age""32")); jo.Add(newJProperty("teachar"new JObject(new JProperty("name""张雨生"), new JProperty("sex"""), new JProperty("age""30")))); JToken Tteacher = jo["teachar"]; Console.WriteLine(Tteacher.ToString()); Console.ReadLine(); } }}

C#解析Json

由此可以知道JToken返回的其实是对应key的value部分,再来用linq to json,首先准备一字符串,用linq 查询王力宏的朋友的名字:

using System;using System.Collections.Generic;using System.Linq;using System.Text;usingSystem.Threading.Tasks;using Newtonsoft.Json;using System.IO;usingNewtonsoft.Json.Linq;namespace ConsoleApplication1{ class Program { static voidMain(string[] args) { string jsonstr= "{\"Name\" : \"王力宏\", \"Age\" : 34, \"friends\" : [{\"Name\" : \"林俊杰\" , \"Age\":30},{\"Name\" : \"张惠妹\",\"Age\":29}] }"; JObject jo =JObject.Parse(jsonstr); var a = from b in jo["friends"].Children() select (string) b["Name"];foreach (var item in a) { Console.WriteLine(item); } Console.Read(); } }}

简单地对于Json的解析就介绍到这里了。。。有什么不对的地方或者需要改正的地方请大牛们指正。。。


以上是关于C#解析Json的主要内容,如果未能解决你的问题,请参考以下文章

C#解析Json

C# 解析 json

使用 C# 解析 JSON 文本文件

C# 解析 Json数据

C#解析JSON实例

C#解析JSON字符串总结