使用Newtonsoft.Json解析JSON出错



当我尝试使用Newtonsoft解析JSON时,我得到以下错误。Json使用

Response result = JsonConvert.DeserializeObject<Response>(unfilteredJSONData);

不能添加属性字符串到Newtonsoft.Json.Linq.JObject。对象上已经存在同名的属性。

我无法控制JSON提要,他们只是添加了flags1flags2。重复的字符串似乎是导致错误,但我没有任何好主意,如何解决它。在添加新字段之前,这段代码一直运行良好。

更新:


第一个错误是由使用过时的JSON.net版本引起的。我正在使用的CMS系统有一个内置版本,它是3.5。当我使用4.5时,我得到一个新的错误:

无法添加Newtonsoft.Json.Linq.JValue到Newtonsoft.Json.Linq.JObject.

事实证明,我下面的JSON与我正在处理的格式不完全相同。请注意更新。错误似乎是在这里引起的:

"flags1": {
    "string": "text",
    "string": "text"
},

JSON是:

{
    "result":
    {
        "lookups":
        [
            {
                "groups":
                [
                    {
                        "item0": "text",
                        "item1": "text",
                        "item2": 0,
                        "item3": 0,
                        "item4": 11.5,
                        "item5": true
                    },
                    {
                        "item6": "text",
                        "oddName": "text"
                    },
                    {
                        "item7": {
                            "subitem0": "text",
                            "subitem1": 0,
                            "subitem2": true
                        },
                        "item8": {
                            "subitem0": "string",
                            "subitem1": 0,
                            "subitem2": true
                        }
                    },
                    {
                        "url": "http://google.com",
                        "otherurl": "http://yahoo.com",
                        "alturllist": [],
                        "altotherurl": []
                    },
                    {},
                    {
                        "flags1": {
                            "string": "text"
                        },
                        "flags2": {
                            "string": "text"
                        }
                    }
                ]
            },
            {
                "groups":
                [
                    {
                        "item0": "text",
                        "item1": "text",
                        "item2": 0,
                        "item3": 0,
                        "item4": 11.5,
                        "item5": true
                    },
                    {
                        "item6": "text",
                        "oddName": "text"
                    },
                    {
                        "item7": {
                            "subitem0": "text",
                            "subitem1": 0,
                            "subitem2": true
                        },
                        "item8": {
                            "subitem0": "string",
                            "subitem1": 0,
                            "subitem2": true
                        }
                    },
                    {
                        "url": "http://google.com",
                        "otherurl": "http://yahoo.com",
                        "alturllist": [],
                        "altotherurl": []
                    },
                    {},
                    {
                        "flags1": {
                            "string": "text",
                            "string": "text"
                        },
                        "flags2": {}
                    }
                ]
            }
        ]
    }
}
c#类是:
// response
[DataContract]
public class Response
{
    [DataMember(Name = "result")]
    public Result result { get; set; }
}
[DataContract]
public class Result
{
    [DataMember(Name = "lookups")]
    public List<Item> lookups { get; set; }
}
[DataContract]
public class Item
{
    [DataMember(Name = "groups")]
    public List<Dictionary<string, object>> groups { get; set; }
}

为了清晰,我简化了JSON和代码示例。

我包含了代码aspx来简化复制。

test.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Test.aspx.cs" Inherits="Test" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <code>
    <%=response %>
    </code></div>
    </form>
</body>
</html>

test.aspx.cs

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Runtime.Serialization;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using NLog;
public partial class Test : System.Web.UI.Page
{
    public string response = string.Empty;
    public static string cacheDirPath = HttpRuntime.AppDomainAppPath + "cache\";
    private static Logger log = LogManager.GetLogger("productFeed");
    protected void Page_Load(object sender, EventArgs e)
    {
        response = readDataFromFile(cacheDirPath + "test2.json");
        Response masheryResult = JsonConvert.DeserializeObject<Response>(response);
    }
    private string readDataFromFile(string filePath)
    {
        string JSONData = string.Empty;
        try
        {
            StreamReader myFile = new StreamReader(filePath);
            JSONData = myFile.ReadToEnd();
            myFile.Close();
        }
        catch (Exception e)
        {
            log.Warn(e.Message);
        }
        return JSONData;
    }
}
// response
[DataContract]
public class Response
{
    [DataMember(Name = "result")]
    public Result result { get; set; }
}
[DataContract]
public class Result
{
    [DataMember(Name = "lookups")]
    public List<Item> lookups { get; set; }
}
[DataContract]
public class Item
{
    [DataMember(Name = "groups")]
    public List<Dictionary<string, object>> groups { get; set; }
}

"flags1"对象中的两个属性都命名为"string",一个属性不能定义两次。

编辑:看起来,至少在最新的nuget版本中,JObject。Parse跳过错误并正确解析数据!我希望你能做到。

这里有一个例子,你可以这样做:

Response result = JObject.Parse(unfilteredJSONData).ToObject<Response>();

除了Connor Hilarides的答案,它还可以用于包括数组:

JToken resultToken = JToken.Parse(unfilteredJSONData);

相关内容

  • 没有找到相关文章

最新更新