解析json字元串有很多方式, 1 : 在網上下載json解析的dll類庫並添加引用, 調用相關方法; 2 : 使用自帶類庫JavaScriptSerializer的序列號和反序列化; 對於以上兩個方法我沒有試用過, 應該很方便很簡潔性能很高吧! 自己根據遍歷字元串找json字元串規律, 自己寫了一 ...
解析json字元串有很多方式, 1 : 在網上下載json解析的dll類庫並添加引用, 調用相關方法; 2 : 使用自帶類庫JavaScriptSerializer的序列號和反序列化; 對於以上兩個方法我沒有試用過, 應該很方便很簡潔性能很高吧!
自己根據遍歷字元串找json字元串規律, 自己寫了一個類庫, 只有一個方法只提供解析, 沒有其他方法. 缺點 : 可能比較死板, 可能性能也不及網上下載解析類庫.
經測試和調試後可以遍歷大部分json字元串數據, json字元串可以嵌套, 但要符合json的規律, 數據中不能出現json字元串敏感關鍵字元 " 和 , 和 [ ] 和 { } ,數據中如果需要使用可以使用中文字元代替.
數據返回結果存放在 Dictionary<string, object> 鍵 值對中, 如果 值為字元串, 那麼object就為字元串,為了嵌套, 如果 值為數組, 那麼object就為 List<object> , 如果值為一個對象, 那麼object就存放在 Dictionary<string, object> 如此嵌套下去, 最終數據我們根據自己的json數據結構遍歷Dictionary<string, object>集合即可. (註 : 每個Dictionary中鍵必須唯一)
1. 解析類 : AnalyzeJSON 全部代碼:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace System.AnalyzeJSON { /// <summary> /// 對於 JSON數據進行解析 /// Date:2019/6/25 /// Author:weloglog /// </summary> public class AnalyzeJSON { /// <summary> /// 最大嵌套深度 /// </summary> public int MaxNum = 50; /// <summary> /// 解析JSON字元串 /// </summary> /// <param name="strJSON">JSON字元串</param> /// <returns>返回Dictionary數據</returns> public Dictionary<string, object> AnalyzeString(string strJSON) { if (strJSON == null || strJSON.Trim() == "" || strJSON.Trim().Length < 0) { return null; } #region 篩選判斷並賦值 [此步驟可以省略] int idF = -1;//第一個 { 下標索引 int idL = -1;//最後一個 } 下標索引 int mD = 0;//記錄 { } 的個數對 int mZ = 0;//記錄 [ ] 的個數對 for (int i = 0; i < strJSON.Length; i++) { if (mD > MaxNum || mZ > MaxNum) { break;//不滿足條件退出迴圈 } if (idF == -1 && strJSON[i] == '{') { idF = i;//取第一個 { 下標 } if (strJSON[i] == '{') { mD++; if (idL > 0) { break; } } if (strJSON[i] == '}') { mD--; if (mD == 0) { idL = i; } } if (strJSON[i] == '[') { mZ++; } if (strJSON[i] == ']') { mZ--; } } if (mD == 0 && mZ == 0 && idL > 0 && idL - idF > 1) { strJSON = strJSON.Substring(idF, idL - idF + 1);//重新賦值json字元串數據, 去掉{ }前後多餘部分 } else { return null;//條件不滿足, JSON字元串不規範 } #endregion //遍歷 並返回 return obj(strJSON); } //遇到 { } 的處理函數 private Dictionary<string, object> obj(string str) { Dictionary<string, object> ro = new Dictionary<string, object>(); int dc = 0;//{ } 的對數 int len = str.Length; for (int i = 0; i < len; i++) { if (str[i] == '{') { dc++; } if (str[i] == '}') { dc--; } if (str[i] != '{' && dc > 0) { StringBuilder tem = new StringBuilder(); StringBuilder ojtem = new StringBuilder(); bool isstr = false; object oj = ""; int c = 0;//次數 bool iskey = true;//是否為鍵賦值 bool isString = true;//值是否為字元串類型 while (i < len && str[i] != ',') { if (iskey) //給鍵 賦值 { if (str[i] != '\"') { if (str[i] == ':') { iskey = false; c = -1;//重置 } else { //tem += str[i]; tem.Append(str[i]); } } } else //給值 賦值 { //特殊情況, 遇到 { } 和 [ ] 的情況 if (isString && str[i] == '[')//只允許第一次進入 { isString = false; int idxs = 0;//記錄 [ ] 出現的次數 StringBuilder tm = new StringBuilder(); while (i < len) { if (str[i] == '[') { idxs++; } if (str[i] == ']') { idxs--; } tm.Append(str[i]); i++; if (idxs == 0)//變成一個完整的組合 { break; } } oj = arr(tm.ToString()); break; } else if (isString && str[i] == '{')//只允許第一次進入 { isString = false; int idxs = 0;//記錄 { } 出現的次數 StringBuilder tm = new StringBuilder(); while (i < len) { if (str[i] == '{') { idxs++; } if (str[i] == '}') { idxs--; } tm.Append(str[i]); i++; if (idxs == 0)//變成一個完整的組合 { break; } } oj = obj(tm.ToString()); break; } else { if (str[i] != '\"') { if (str[i] == ',' || str[i] == '}' || str[i] == ']')//跳出迴圈 { break; } else { isstr = true; ojtem.Append(str[i]); } } } } c++; i++; } c = 0; try//鍵 唯一 { if (tem != null && tem.ToString().Length > 0) { if (isstr) { ro.Add(tem.ToString(), ojtem);//添加 isstr = false; } else { ro.Add(tem.ToString(), oj);//添加 } } } catch { } } } return ro; } //遇到 [ ] 的處理函數 private object arr(string str) { object ojj = new object(); //去掉首位 [ ] 符號 str = str.Substring(1, str.Length - 2); int len = str.Length; int c = 0;//雙引號索引 List<object> lst = new List<object>(); bool ists = false;//是否為特殊 for (int i = 0; i < len; i++) { object tem = ""; StringBuilder sb = new StringBuilder(); bool isstr = false; while (i < len) { if (str[i] == '[')//特殊處理 { int idxs = 0;//記錄 [ ] 出現的次數 StringBuilder tm = new StringBuilder(); while (i < len) { if (str[i] == '[') { idxs++; } if (str[i] == ']') { idxs--; } tm.Append(str[i]); i++; if (idxs == 0)//變成一個完整的組合 { break; } } lst.Add(arr(tm.ToString())); ists = true; i++; continue; } else if (str[i] == '{')//特殊處理 { int idxs = 0;//記錄 [ ] 出現的次數 StringBuilder tm = new StringBuilder(); while (i < len) { if (str[i] == '{') { idxs++; } if (str[i] == '}') { idxs--; } tm.Append(str[i]); i++; if (idxs == 0)//變成一個完整的組合 { break; } } lst.Add(obj(tm.ToString())); ists = true; i++; continue; } else { ists = false; if (c == 0 && str[i] == '\"') { i++; c++; continue; } if (str[i] == '\"' && i + 1 < len && str[i + 1] == ',' || i + 1 == len) { i++; c++; break; } if (str[i] == '\"' && i + 1 < len && str[i + 1] == ']' || i + 1 == len) { i++; c++; continue; } if (i + 1 < len && str[i + 1] == ']') { i++; c++; continue; } isstr = true; sb.Append(str[i]); i++; c++; } } if (!ists) { if (isstr) { lst.Add(sb);// [ ] 的值存入List<string> 中 isstr = false; } else { lst.Add(tem);// [ ] 的值存入List<string> 中 } } c = 0;//歸零 } ojj = lst; return ojj; } } }AnalyzeJSON 類
2. 方法的調用和數據的使用
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.AnalyzeJSON; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.IO; using System.Text.RegularExpressions; namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } //按鈕點擊事件 private void button1_Click(object sender, EventArgs e) { // //窗體中一個 TextBox 文本框[多行] 和 一個 Button 測試按鈕 // // //在網上隨便找了一個json數據字元串的js //[在這裡感謝'4399游戲資訊'平臺提供的這些數據供測試,該js只供學習不可用作商業用途] // //該js是一個游戲類英雄相關屬性的數據 //js共4行, 每一行數據也非常大, 我們使用第一行進行測試,每一行使用回車鍵[\n]分割 // string src = "//newsimg.5054399.com/dtzzq/static/zrmnq/wap/js/data.js"; StreamReader reader = new StreamReader(System.Net.WebRequest.Create("http:" + src).GetResponse().GetResponseStream()); //Regex.Unescape("") 方法是將字元串含有 \uxxxx 的16進位轉化為我們識別的字元 string[] zongstrs = Regex.Unescape(reader.ReadToEnd()).Split('\n'); //創建一個解析對象 AnalyzeJSON aj = new AnalyzeJSON(); //調用方法 AnalyzeString("JSON數據字元串") 進行解析 並返回 解析後的數據集合Dictionary<string, object> Dictionary<string, object> obj = aj.AnalyzeString(zongstrs[0]); //定義一個字元串進行拼接顯示得到的數據 StringBuilder sb = new StringBuilder(); //調用拼接處理方法 zx(obj, sb); //把得到的數據以字元串的形式展示出來 textBox1.Text = sb.ToString(); } // //數據遍歷解析方法 //根據需要可以為自己定義數據處理賦值方法,此處只作為顯示使用 // private void zx(Dictionary<string, object> obj, StringBuilder sb) { foreach (var item in obj) { if ((item.Value as Dictionary<string, object>) != null) { zx((item.Value as Dictionary<string, object>), sb); } else { if ((item.Value as List<object>) != null && (item.Value as List<object>).Count > 0) { List<object> lst = item.Value as List<object>; sb.Append(item.Key + ":\r\n"); for (int i = 0; i < lst.Count; i++) { if ((lst[i] as Dictionary<string, object>) != null) { zx((lst[i] as Dictionary<string, object>), sb); } else { sb.Append("\t" + lst[i] + ","); } } sb.Append("\r\n"); } else { sb.Append(item.Key + ":" + item.Value.ToString() + "\r\n"); } } } } } }頁面展示代碼
代碼可能還有很多需要改進的地方, 希望各位大神指出來, 共同學習進步!^_^