一文掌握c#json(2023最新整理)
最近在做微信開(kāi)發(fā)時(shí)用到了一些json的問(wèn)題,就是把微信返回回來(lái)的一些json數(shù)據(jù)做一些處理,但是之前json掌握的不好,浪費(fèi)了好多時(shí)間在查找一些json有關(guān)的轉(zhuǎn)換問(wèn)題,我所知道的方法只有把json序列化和反序列化一下,但是太麻煩了我覺(jué)得,所以就在找一些更簡(jiǎn)單又方便使用的方法。也許這個(gè)會(huì)有用吧,所以先放到這以后能用到的。
json的全稱(chēng)是”javascript object notation”,意思是javascript對(duì)象表示法,它是一種基于文本,獨(dú)立于語(yǔ)言的輕量級(jí)數(shù)據(jù)交換格式。xml也是一種數(shù)據(jù)交換格式,為什么沒(méi) 有選擇xml呢?因?yàn)閤ml雖然可以作為跨平臺(tái)的數(shù)據(jù)交換格式,但是在js(javascript的簡(jiǎn)寫(xiě))中處理xml非常不方便,同時(shí)xml標(biāo)記比數(shù)據(jù) 多,增加了交換產(chǎn)生的流量,而json沒(méi)有附加的任何標(biāo)記,在js中可作為對(duì)象處理,所以我們更傾向于選擇json來(lái)交換數(shù)據(jù)。這篇文章主要從以下幾個(gè)方 面來(lái)說(shuō)明json。
1,json的兩種結(jié)構(gòu)
2,認(rèn)識(shí)json字符串
3,在js中如何使用json
4,在.net中如何使用json
5,總結(jié)
json的兩種結(jié)構(gòu)
json有兩種表示結(jié)構(gòu),對(duì)象和數(shù)組。
對(duì)象結(jié)構(gòu)以”{”大括號(hào)開(kāi)始,以”}”大括號(hào)結(jié)束。中間部分由0或多個(gè)以”,”分隔的”key(關(guān)鍵字)/value(值)”對(duì)構(gòu)成,關(guān)鍵字和值之間以”:”分隔,語(yǔ)法結(jié)構(gòu)如代碼。
{ key1:value1, key2:value2, ... }
其中關(guān)鍵字是字符串,而值可以是字符串,數(shù)值,true,false,null,對(duì)象或數(shù)組
數(shù)組結(jié)構(gòu)以”[”開(kāi)始,”]”結(jié)束。中間由0或多個(gè)以”,”分隔的值列表組成,語(yǔ)法結(jié)構(gòu)如代碼。
[ { key1:value1, key2:value2 }, { key3:value3, key4:value4 } ]
認(rèn)識(shí)json字符串
之前我一直有個(gè)困惑,分不清普通字符串,json字符串和json對(duì)象的區(qū)別。經(jīng)過(guò)一番研究終于給弄明白了。比如在js中。
字符串:這個(gè)很好解釋?zhuān)甘褂?#8220;”雙引號(hào)或’’單引號(hào)包括的字符。例如:var comstr = 'this is string';
json字符串:指的是符合json格式要求的js字符串。例如:var jsonstr = "{studentid:'100',name:'tmac',hometown:'usa'}";
json對(duì)象:指符合json格式要求的js對(duì)象。例如:var jsonobj = { studentid: "100", name: "tmac", hometown: "usa" };
在js中如何使用json
json是js的一個(gè)子集,所以可以在js中輕松地讀,寫(xiě)json。讀和寫(xiě)json都有兩種方法,分別是利用”.”操作符和“[key]”的方式。
我們首先定義一個(gè)json對(duì)象,代碼如下。
var obj = { "1": "value1", "2": "value2", count: 3, person: [ //數(shù)組結(jié)構(gòu)json對(duì)象,可以嵌套使用 { id: 1, name: "張倩" }, { id: 2, name: "張帥" } ], object: { //對(duì)象結(jié)構(gòu)json對(duì)象 id: 1, msg: "對(duì)象里的對(duì)象" } };
1,從json中讀數(shù)據(jù)
function readjson() { alert(obj.1); //會(huì)報(bào)語(yǔ)法錯(cuò)誤,可以用alert(obj["1"]);說(shuō)明數(shù)字最好不要做關(guān)鍵字 alert(obj.2); //同上 alert(obj.person[0].name); //或者alert(obj.person[0]["name"]) alert(obj.object.msg); //或者alert(obj.object["msg"]) }
2,向json中寫(xiě)數(shù)據(jù)
比如要往json中增加一條數(shù)據(jù),代碼如下:
function add() { //往json對(duì)象中增加了一條記錄 obj.sex= "男" //或者obj["sex"]="男" }
增加數(shù)據(jù)后的json對(duì)象如圖:
3,修改json中的數(shù)據(jù)
我們現(xiàn)在要修改json中count的值,代碼如下:
function update() { obj.count = 10; //或obj["count"]=10 }
修改后的json如圖。
4,刪除json中的數(shù)據(jù)
我們現(xiàn)在實(shí)現(xiàn)從json中刪除count這條數(shù)據(jù),代碼如下:
function delete() { delete obj.count; }
刪除后的json如圖
可以看到count已經(jīng)從json對(duì)象中被刪除了。
5,遍歷json對(duì)象
可以使用for…in…循環(huán)來(lái)遍歷json對(duì)象中的數(shù)據(jù),比如我們要遍歷輸出obj對(duì)象的值,代碼如下:
function traversal() { for (var c in obj) { console.log(c + ":", obj[c]); } }
程序輸出結(jié)果為:
在.net中如何使用json
說(shuō)到在.net中使用json,就不得不提到j(luò)son.net,它是一個(gè)非常著名的在.net中處理json的工具,我們最常用的是下面兩個(gè)功能。
1,通過(guò)序列化將.net對(duì)象轉(zhuǎn)換為json字符串
在web開(kāi)發(fā)過(guò)程中,我們經(jīng)常需要將從數(shù)據(jù)庫(kù)中查詢(xún)到的數(shù)據(jù)(一般為一個(gè)集合,列表或數(shù)組等)轉(zhuǎn)換為json格式字符串傳回客戶(hù)端,這就需要進(jìn)行序 列化,這里用到的是jsonconvert對(duì)象的serializeobject方法。其語(yǔ)法格式 為:jsonconvert.serializeobject(object),代碼中的”object”就是要序列化的.net對(duì)象,序列化后返回的是 json字符串。
比如,現(xiàn)在我們有一個(gè)tstudent的學(xué)生表,表中的字段和已有數(shù)據(jù)如圖所示
從表中我們可以看到一共有五條數(shù)據(jù),現(xiàn)在我們要從數(shù)據(jù)庫(kù)中取出這些數(shù)據(jù),然后利用json.net的jsonconvert對(duì)象序列化它們?yōu)閖son字符串,并顯示在頁(yè)面上。c#代碼如下
protected void page_load(object sender, eventargs e) { using (l2sdbdatacontext db = new l2sdbdatacontext()) { list<student> studentlist = new list<student>(); var query = from s in db.tstudents select new { studentid=s.studentid, name=s.name, hometown=s.hometown, gender=s.gender, brithday=s.birthday, classid=s.classid, weight=s.weight, height=s.height, desc=s.desc }; foreach (var item in query) //循環(huán)遍歷數(shù)組,轉(zhuǎn)換對(duì)象 { student student = new student { studentid=item.studentid,name=item.name,hometown=item.hometown,gender=item.gender,brithday=item.brithday,classid=item.classid,weight=item.weight,height=item.height,desc=item.desc}; studentlist.add(student); } lbmsg.innertext = jsonconvert.serializeobject(studentlist); } }
輸出結(jié)果
從圖中我們可以看到,數(shù)據(jù)庫(kù)中的5條記錄全部取出來(lái)并轉(zhuǎn)化為json字符串了。
2,使用linq to json定制json數(shù)據(jù)
使用jsonconvert對(duì)象的serializeobject只是簡(jiǎn)單地將一個(gè)list或集合轉(zhuǎn)換為json字符串。但是,有的時(shí)候我們的前端 框架比如extjs對(duì)服務(wù)端返回的數(shù)據(jù)格式是有一定要求的,比如下面的數(shù)據(jù)格式,這時(shí)就需要用到j(luò)son.net的linq to json,linq to json的作用就是根據(jù)需要的格式來(lái)定制json數(shù)據(jù)。
比如經(jīng)常用在分頁(yè)的json格式如代碼:
{ "total": 5, //記錄總數(shù) "rows":[ //json格式的數(shù)據(jù)列表 ] }
使用linq to json前,需要引用newtonsoft.json的dll和using newtonsoft.json.linq的命名空間。linq to json主要使用到j(luò)object, jarray, jproperty和jvalue這四個(gè)對(duì)象,jobject用來(lái)生成一個(gè)json對(duì)象,簡(jiǎn)單來(lái)說(shuō)就是生成”{}”,jarray用來(lái)生成一個(gè)json數(shù) 組,也就是”[]”,jproperty用來(lái)生成一個(gè)json數(shù)據(jù),格式為key/value的值,而jvalue則直接生成一個(gè)json值。下面我們就 用linq to json返回上面分頁(yè)格式的數(shù)據(jù)。代碼如下:
protected void page_load(object sender, eventargs e) { using (l2sdbdatacontext db = new l2sdbdatacontext()) { //從數(shù)據(jù)庫(kù)中取出數(shù)據(jù)并放到列表list中 list<student> studentlist = new list<student>(); var query = from s in db.tstudents select new { studentid = s.studentid, name = s.name, hometown = s.hometown, gender = s.gender, brithday = s.birthday, classid = s.classid, weight = s.weight, height = s.height, desc = s.desc }; foreach (var item in query) { student student = new student { studentid = item.studentid, name = item.name, hometown = item.hometown, gender = item.gender, brithday = item.brithday, classid = item.classid, weight = item.weight, height = item.height, desc = item.desc }; studentlist.add(student); } //基于創(chuàng)建的list使用linq to json創(chuàng)建期望格式的json數(shù)據(jù) lbmsg.innertext = new jobject( new jproperty("total",studentlist.count), new jproperty("rows", new jarray( //使用linq to json可直接在select語(yǔ)句中生成json數(shù)據(jù)對(duì)象,無(wú)須其它轉(zhuǎn)換過(guò)程 from p in studentlist select new jobject( new jproperty("studentid",p.studentid), new jproperty("name",p.name), new jproperty("hometown",p.hometown) ) ) ) ).tostring(); } }
輸出結(jié)果為:
3,處理客戶(hù)端提交的json數(shù)據(jù)
客戶(hù)端提交過(guò)來(lái)的數(shù)據(jù)一般都是json字符串,有了更好地進(jìn)行操作(面向?qū)ο蟮姆绞剑?,所以我們一般都?huì)想辦法將json字符串轉(zhuǎn)換為json對(duì)象。例如客戶(hù)端提交了以下數(shù)組格式j(luò)son字符串。
[ {studentid:"100",name:"aaa",hometown:"china"}, {studentid:"101",name:"bbb",hometown:"us"}, {studentid:"102",name:"ccc",hometown:"england"} ]
在服務(wù)端就可以使用jobject或jarray的parse方法輕松地將json字符串轉(zhuǎn)換為json對(duì)象,然后通過(guò)對(duì)象的方式提取數(shù)據(jù)。下面是服務(wù)端代碼。
protected void page_load(object sender, eventargs e) { string inputjsonstring = @" [ {studentid:'100',name:'aaa',hometown:'china'}, {studentid:'101',name:'bbb',hometown:'us'}, {studentid:'102',name:'ccc',hometown:'england'} ]"; jarray jsonobj = jarray.parse(inputjsonstring); string message = @"<table border='1'> <tr><td width='80'>studentid</td><td width='100'>name</td><td width='100'>hometown</td></tr>"; string tpl = "<tr><td>{0}</td><td>{1}</td><td>{2}</td></tr>"; foreach (jobject jobject in jsonobj) { message += string.format(tpl, jobject["studentid"], jobject["name"],jobject["hometown"]); } message += "</table>"; lbmsg.innerhtml = message; }
輸出結(jié)果:
當(dāng)然,服務(wù)端除了使用linq to json來(lái)轉(zhuǎn)換json字符串外,也可以使用jsonconvert的deserializeobject方法。如下面代碼實(shí)現(xiàn)上面同樣的功能。
list<student> studentlist = jsonconvert.deserializeobject<list<student>>(inputjsonstring);//注意這里必須為list<student>類(lèi)型,因?yàn)榭蛻?hù)端提交的是一個(gè)數(shù)組json foreach (student student in studentlist) { message += string.format(tpl, student.studentid, student.name,student.hometown); }
總結(jié)
在客戶(hù)端,讀寫(xiě)json對(duì)象可以使用”.”操作符或”["key”]”,json字符串轉(zhuǎn)換為json對(duì)象使用eval()函數(shù)。
在服務(wù)端,由.net對(duì)象轉(zhuǎn)換json字符串優(yōu)先使用jsonconvert對(duì)象的serializeobject方法,定制輸出json字符串使用linq to json。由json字符串轉(zhuǎn)換為.net對(duì)象優(yōu)先使用jsonconvert對(duì)象的deserializeobject方法,然后也可以使用linq to json。
根據(jù)所需調(diào)用方法就行。不過(guò)也可以用newtonsoft.json這個(gè)dll文件,如果轉(zhuǎn)換數(shù)組的話(huà)就用
jobject json = (jobject)jsonconvert.deserializeobject(str); jarray array = (jarray)json["article"]; foreach (var jobject in array) { //賦值屬性 }
關(guān)于一文掌握c# json(2023最新整理)的文章就介紹至此,更多相關(guān)c# json內(nèi)容請(qǐng)搜索碩編程以前的文章,希望以后支持碩編程!