C#中如何格式化json字串的方法分析

來源:互聯網
上載者:User
這篇文章主要介紹了C#格式化json字串的方法,結合執行個體形式分析了C#針對json字串格式化的原理、步驟與具體實現技巧,需要的朋友可以參考下

本文執行個體講述了C#格式化json字串的方法。分享給大家供大家參考,具體如下:

將Json字串轉化成格式化表示的方法: 字串還原序列化為對象-->對象再序列化為字串

使用Newtonsoft.Json提供的API,

很多時候我們需要將json字串以


{  "status": 1,  "sum": 9}

這種方式顯示,而從服務端取回來的時候往往是這樣


{"status": 1, "sum": 9}

什嗎?無所謂?

如果資料很龐大的時候,比如這樣

複製代碼 代碼如下:

{"status":1,"totalcount":2,"list":[{"id":"2305b1e2-4e31-4fd3-8eb6-db57641914df","code":"8147056167227050270","title":"testing","type":"產品","status":"已處理","datetime":"2014-07-12T21:16:46","replycontent":"好的,只是測試"},{"id":"3a6546f6-49a7-4a17-b679-b3812b12b27e","code":"8147056167227050269","title":"我建議龍頭有多種選配方式","type":"產品","status":"未處理","datetime":"2014-07-12T18:49:08.933","replycontent":""},{"id":"f735e461-ca72-4b44-8d7b-cd97ac09802f","code":"8147056167227050268","title":"這個產品不怎麼好,不好用","type":"產品","status":"未處理","datetime":"2014-07-12T15:06:19.1","replycontent":""},{"id":"15926d9d-f469-4921-b01d-4b48ef8bd93d","code":"7141054273018032465","title":"jdjbcn","type":"服務","status":"未處理","datetime":"2014-05-27T01:03:46.477","replycontent":""},{"id":"1debf78f-42b3-4037-b71f-34075eed92bc","code":"4141051277003536211","title":"jdjbxn.x","type":"服務","status":"未處理","datetime":"2014-05-27T00:53:21.18","replycontent":""},{"id":"27593c52-b327-4557-8106-b9156df53909","code":"1143051276001357050","title":"ghggghh","type":"服務","status":"未處理","datetime":"2014-05-27T00:35:05.933","replycontent":""},{"id":"040198fc-b466-46c1-89d8-0514fbde9480","code":"4142053251166372433","title":"你好,你知道啦,我不喜歡白色浴缸","type":"服務","status":"未處理","datetime":"2014-05-25T16:37:43.853","replycontent":""},{"id":"16185418-d461-4e98-83c3-824eb7e344d6","code":"4145058213013197148","title":"hdjbchh","type":"服務","status":"未處理","datetime":"2014-05-21T01:19:14.903","replycontent":""},{"id":"6c043404-c1db-42e8-adeb-d4880fa7d1b5","code":"0142051185128085372","title":"ghhjdhd","type":"服務","status":"未處理","datetime":"2014-05-18T12:08:37.997","replycontent":""},{"id":"2dca1a38-a32b-4955-a99c-2ed7d6de60fa","code":"3146050186122030382","title":"hsibcn","type":"服務","status":"未處理","datetime":"2014-05-18T12:03:38.913","replycontent":""}]}

如果沒有格式化,將很難查看。。。

使用下面的方法,將結果格式化為這樣

{  "status": 1,  "totalcount": 2,  "list": [    {      "id": "2305b1e2-4e31-4fd3-8eb6-db57641914df",      "code": "8147056167227050270",      "title": "testing",      "type": "產品",      "status": "已處理",      "datetime": "2014-07-12T21:16:46",      "replycontent": "好的,只是測試"    },    {      "id": "3a6546f6-49a7-4a17-b679-b3812b12b27e",      "code": "8147056167227050269",      "title": "我建議龍頭有多種選配方式",      "type": "產品",      "status": "未處理",      "datetime": "2014-07-12T18:49:08.933",      "replycontent": ""    },    {      "id": "f735e461-ca72-4b44-8d7b-cd97ac09802f",      "code": "8147056167227050268",      "title": "這個產品不怎麼好,不好用",      "type": "產品",      "status": "未處理",      "datetime": "2014-07-12T15:06:19.1",      "replycontent": ""    },    {      "id": "15926d9d-f469-4921-b01d-4b48ef8bd93d",      "code": "7141054273018032465",      "title": "jdjbcn",      "type": "服務",      "status": "未處理",      "datetime": "2014-05-27T01:03:46.477",      "replycontent": ""    },    {      "id": "1debf78f-42b3-4037-b71f-34075eed92bc",      "code": "4141051277003536211",      "title": "jdjbxn.x",      "type": "服務",      "status": "未處理",      "datetime": "2014-05-27T00:53:21.18",      "replycontent": ""    },    {      "id": "27593c52-b327-4557-8106-b9156df53909",      "code": "1143051276001357050",      "title": "ghggghh",      "type": "服務",      "status": "未處理",      "datetime": "2014-05-27T00:35:05.933",      "replycontent": ""    },    {      "id": "040198fc-b466-46c1-89d8-0514fbde9480",      "code": "4142053251166372433",      "title": "你好,你知道啦,我不喜歡白色浴缸",      "type": "服務",      "status": "未處理",      "datetime": "2014-05-25T16:37:43.853",      "replycontent": ""    },    {      "id": "16185418-d461-4e98-83c3-824eb7e344d6",      "code": "4145058213013197148",      "title": "hdjbchh",      "type": "服務",      "status": "未處理",      "datetime": "2014-05-21T01:19:14.903",      "replycontent": ""    },    {      "id": "6c043404-c1db-42e8-adeb-d4880fa7d1b5",      "code": "0142051185128085372",      "title": "ghhjdhd",      "type": "服務",      "status": "未處理",      "datetime": "2014-05-18T12:08:37.997",      "replycontent": ""    },    {      "id": "2dca1a38-a32b-4955-a99c-2ed7d6de60fa",      "code": "3146050186122030382",      "title": "hsibcn",      "type": "服務",      "status": "未處理",      "datetime": "2014-05-18T12:03:38.913",      "replycontent": ""    }  ]}

實現代碼如下:

private string ConvertJsonString(string str){  //格式化json字串  JsonSerializer serializer = new JsonSerializer();  TextReader tr = new StringReader(str);  JsonTextReader jtr = new JsonTextReader(tr);  object obj = serializer.Deserialize(jtr);  if (obj != null)  {    StringWriter textWriter = new StringWriter();    JsonTextWriter jsonWriter = new JsonTextWriter(textWriter)    {      Formatting = Formatting.Indented,      Indentation = 4,      IndentChar = ' '    };    serializer.Serialize(jsonWriter, obj);    return textWriter.ToString();  }  else  {    return str;  }}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.