为了账号安全,请及时绑定邮箱和手机立即绑定

部分反序列化 JSON 以仅获取必需的属性

部分反序列化 JSON 以仅获取必需的属性

C#
凤凰求蛊 2021-10-31 19:04:16
我在 JSON 格式中得到了很大的响应,我只需要 2 个字符串,这是我的 JSON 文件,我在其中减少了更好的阅读{  "cdn_url": "https://f.vimeocdn.com",  "vimeo_api_url": "api.vimeo.com",  "request": {    "files": {      "progressive": [        {          "profile": 164,          "width": 622,          "mime": "video/mp4",          "fps": 25,          "url": "1047326445.mp4",          "cdn": "akamai_interconnect",          "quality": "360p",          "id": 1047326445,          "origin": "gcs",          "height": 360        },        {          "profile": 165,          "width": 932,          "mime": "video/mp4",          "fps": 25,          "url": "1047326437.mp4",          "cdn": "akamai_interconnect",          "quality": "540p",          "id": 1047326437,          "origin": "gcs",          "height": 540        }      ]    }  },  "video": {    "version": {      "current": null,      "available": null    },    "height": 540,    "duration": 401,    "thumbs": {      "640": "712851375_640.jpg",      "960": "712851375_960.jpg",      "base": "712851375"    },    "id": 279550927,    "default_to_hd": 0,    "url": null,    "privacy": "disable",    "unlisted_hash": null  }}我从中删除了很多对象以便更好地阅读。我想要“url”:“1047326445.mp4”,来自“渐进式数组和来自视频对象中的“640”变量的字符串。
查看完整描述

2 回答

?
叮当猫咪

TA贡献1776条经验 获得超12个赞

我通过这个得到了渴望的结果,


        string json = null;


        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(urlJSONcall);

        HttpWebResponse response = null;


        try

        {

            response = (HttpWebResponse)request.GetResponse();

            var responseStream = response.GetResponseStream();


            if ((responseStream != null) && responseStream.CanRead)

            {

                using (var reader = new System.IO.StreamReader(responseStream))

                {

                    json = reader.ReadToEnd();


                }

            }

        }

        finally

        {

            if (response != null)

            {

                response.Close();

            }

        }


        var datao = (JObject)JsonConvert.DeserializeObject(json);

        //LBresponse.Text = data.ToString();

        string urll = (string)datao["request"]["files"]["progressive"][0]["url"];


        string thumbnailImage = (string)datao["video"]["thumbs"]["640"];

        LBresponse.Text = urll.ToString();

        lbltumb.Text = thumbnailImage.ToString();

    }



查看完整回答
反对 回复 2021-10-31
  • 2 回答
  • 0 关注
  • 224 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信