将Newtonsoft.Json.Linq.JArray转换为特定对象类型的列表

时间:2012-11-26 12:52:20

标签: c# json.net

我有以下{Newtonsoft.Json.Linq.JArray}类型的变量。

properties["Value"] {[
  {
    "Name": "Username",
    "Selected": true
  },
  {
    "Name": "Password",
    "Selected": true
  }

]}

我想要完成的是将其转换为List<SelectableEnumItem>,其中SelectableEnumItem是以下类型:

public class SelectableEnumItem
    {
        public string Name { get; set; }
        public bool Selected { get; set; }
    }

我对编程很新,我不确定这是否可行。任何有关工作示例的帮助将不胜感激。

6 个答案:

答案 0 :(得分:406)

只需调用array.ToObject<List<SelectableEnumItem>>()方法即可。它会返回你需要的东西。

文档:Convert JSON to a Type

答案 1 :(得分:37)

问题中的示例是一个更简单的情况,其中属性名称在json和代码中完全匹配。如果属性名称不完全匹配,例如json中的属性为"first_name": "Mark",代码中的属性为FirstName,然后使用Select method,如下所示

List<SelectableEnumItem> items = ((JArray)array).Select(x => new SelectableEnumItem
{
    FirstName = (string)x["first_name"],
    Selected = (bool)x["selected"]
}).ToList();

答案 2 :(得分:2)

我可以想到实现相同的不同方法

IList<SelectableEnumItem> result= array;

或(我有一些情况,这个不能很好地工作)

var result = (List<SelectableEnumItem>) array;

或使用linq扩展名

var result = array.CastTo<List<SelectableEnumItem>>();

var result= array.Select(x=> x).ToArray<SelectableEnumItem>();

或更明确地

var result= array.Select(x=> new SelectableEnumItem{FirstName= x.Name, Selected = bool.Parse(x.selected) });

请注意以上解决方案我使用的是动态对象

我可以想到一些上述解决方案组合的解决方案。但我认为它涵盖了几乎所有可用的方法。

我自己使用第一个

答案 3 :(得分:2)

我的情况下的API返回值如下所示:

{
  "pageIndex": 1,
  "pageSize": 10,
  "totalCount": 1,
  "totalPageCount": 1,
  "items": [
    {
      "firstName": "Stephen",
      "otherNames": "Ebichondo",
      "phoneNumber": "+254721250736",
      "gender": 0,
      "clientStatus": 0,
      "dateOfBirth": "1979-08-16T00:00:00",
      "nationalID": "21734397",
      "emailAddress": "sebichondo@gmail.com",
      "id": 1,
      "addedDate": "2018-02-02T00:00:00",
      "modifiedDate": "2018-02-02T00:00:00"
    }
  ],
  "hasPreviousPage": false,
  "hasNextPage": false
}

将items数组转换为客户端列表,如下所示:

 if (responseMessage.IsSuccessStatusCode)
        {
            var responseData = responseMessage.Content.ReadAsStringAsync().Result;
            JObject result = JObject.Parse(responseData);

            var clientarray = result["items"].Value<JArray>();
            List<Client> clients = clientarray.ToObject<List<Client>>();
            return View(clients);
        }

答案 4 :(得分:2)

using Newtonsoft.Json.Linq;
using System.Linq;
using System.IO;
using System.Collections.Generic;

public List<string> GetJsonValues(string filePath, string propertyName)
{
  List<string> values = new List<string>();
  string read = string.Empty;
  using (StreamReader r = new StreamReader(filePath))
  {
    var json = r.ReadToEnd();
    var jObj = JObject.Parse(json);
    foreach (var j in jObj.Properties())
    {
      if (j.Name.Equals(propertyName))
      {
        var value = jObj[j.Name] as JArray;
        return values = value.ToObject<List<string>>();
      }
    }
    return values;
  }
}

答案 5 :(得分:1)

使用IList获取JArray计数并使用循环转换为列表

       var array = result["items"].Value<JArray>();

        IList collection = (IList)array;

        var list = new List<string>();

        for (int i = 0; i < collection.Count; j++)
            {
              list.Add(collection[i].ToString());             
            }