当前位置: 首页 > 工具软件 > JSON 2 HTML > 使用案例 >

C#解析JSON

柯学
2023-12-01

使用开源的类库Newtonsoft.Json(下载地址http://json.codeplex.com/)。下载后添加dll引用就能用。 首先添加引用:using Newtonsoft.Json; 

1.Json字符串普通格式解析(常用)

string jsonText = "{"id":"7788","name":"xxx"}";
JObject jb1 = (JObject)JsonConvert.DeserializeObject(jsonText);
string id = jb1["id"].ToString();
string name = jb1["name"].ToString();

2.Json字符串嵌套格式解析

string jsonText = "{"student":{"name":"张三","spellname":"zhangsan"}}";
JObject jb1 = (JObject)JsonConvert.DeserializeObject(jsonText);
string name = jb1["student"]["name"].ToString();
string spellname = jb1["student"]["spellname"].ToString();

3.Json字符串数组格式解析

string jsonArrayText = "[{"a":"a1","b":"b1"},{"a":"a2","b":"b2"}]";  
JArray jArray = (JArray)JsonConvert.DeserializeObject(jsonArrayText);//jsonArrayText必须是带[]数组格式字符串
string str = jArray[0]["a"].ToString();
 类似资料: