Newtonsoft.Json.DLL 解析Json数据

前端之家收集整理的这篇文章主要介绍了Newtonsoft.Json.DLL 解析Json数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
通过JObject.Parse()解析json字串,然后通过JObject["ITEM1"]["ITEM2"]访问Json数据某个属性的值
<pre name="code" class="csharp">        string xml = GetXMLString(); 
        string jsonString = string.Empty; 
        if (xml != string.Empty) 
        { 
            XmlDocument xdoc = new XmlDocument(); 
            xdoc.LoadXml(xml); 
            XmlNode parentNode = xdoc.SelectSingleNode("DATA"); 
            jsonString = JsonConvert.SerializeXmlNode(parentNode); 
        } 

        Aspose.Cells.Workbook xlBook = new Aspose.Cells.Workbook(); 
        xlBook.Open(_fileName); 
        
        //企业基本信息 
        Aspose.Cells.Worksheet sheet = xlBook.Worksheets["企业基本信息"]; 
        int titleRows = sheet.Cells.Rows.Count; 
        JObject jo = JObject.Parse(jsonString); 
         //JObject jo = (JObject)JsonConvert.DeserializeObject(jsonString);           
        sheet.Cells[0,0].PutValue(jo["DATA"]["BASIC"]["ITEM"]["ENTNAME"]==null?"":jo["DATA"]["BASIC"]["ITEM"]["ENTNAME"].ToString()); 
原文链接:https://www.f2er.com/json/289938.html

猜你在找的Json相关文章