c#读取json中指定Key的Value

最近项目中有很多调用Api的地方,本来是打算写实体类把返回的JSON转实体类,但接口太多,好多还是不常用的就自己写了一个查找JSON中指定Key的Value。代码仅供参考,只是一个草版,希望大家多给给意见。

#region 传入指定json字符串和key值查找传入key的value(object)
        public static object digui(string json, string key)
        {
            JavaScriptSerializer javaScriptSerializer = new JavaScriptSerializer();
            Dictionary<string, object> js = javaScriptSerializer.DeserializeObject(json) as Dictionary<string, object>;
            object value = null;
            foreach (KeyValuePair<string, object> item in js)
            {
                if (item.Key == key)
                {
                    value = item.Value;
                    break;
                }
                else if (item.Value is Dictionary<string, object>)
                {
                    object se = di(item.Value as Dictionary<string, object>, key);
                    if (se != null)
                    {
                        value = se;
                        break;
                    }
                }
                else if (item.Value is object[])
                {
                    object[] se = item.Value as object[];
                    if (se.Length > 0)
                    {
                        foreach (object o in se)
                        {
                            if (o is Dictionary<string, object>)
                            {
                                object ses = di(item.Value as Dictionary<string, object>, key);
                                if (ses != null)
                                {
                                    value = ses;
                                    break;
                                }
                            }
                        }
                    }
                }


            }
            return value;

        }
        private static object di(Dictionary<string, object> dic, string key)
        {
            object vale = null;
            foreach (KeyValuePair<string, object> item in dic)
            {
                if (item.Key == key)
                {
                    vale = item.Value;
                    break;
                }
                else if (item.Value is Dictionary<string, object>)
                {
                    object fan = di(item.Value as Dictionary<string, object>, key);
                    if (fan != null)
                    {
                        vale = fan;
                        break;
                    }
                }
                else if (item.Value is object[])
                {
                    object[] se = item.Value as object[];
                    if (se.Length > 0)
                    {
                        foreach (object o in se)
                        {
                            if (o is Dictionary<string, object>)
                            {
                                object ses = di(o as Dictionary<string, object>, key);
                                if (ses != null)
                                {
                                    vale = ses;
                                    break;
                                }
                            }
                        }
                    }
                }

            }
            return vale;
        }
        #endregion

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值