使用System.Json解析JSON异常
本文关键字:JSON 异常 解析 Json System 使用 | 更新日期: 2023-09-27 18:13:06
在将json字符串解析为对象时出现错误。我用的是系统。Json来解析Json字符串。
JSON文件:(注意:我不能改变这个JSON文件的结构,因为它是生成的)
{
title: "My Title",
log: "",
nid: "1234",
type: "software",
language: "EN",
created: "1364480345",
revision_timestamp: "1366803957",
body: {
und: [
{
value: "abc",
summary: "def"
}
]
}
}
c#代码:
string jsonString = new WebClient().DownloadString(".......MyJson.json"); //For test purpose
var obj = JsonObject.Parse (jsonString); ///<--- At this line the exception is thrown
例外:
System.ArgumentException has been thrown.
Invalid JSON string literal format. At line 1, column 2
如何解决这个问题?
提前感谢!
你不能。这是无效的json。字段名必须用引号括起来。所有json解析工具在尝试解析时都会抛出。
你可以在反序列化之前处理它并将其转换为有效的json,但实际上,你需要在API端纠正它。
如何解决这个问题?
(注意:我不能改变这个json文件的结构,因为它是生成的)
简单,使用json.Net。它的工作没有任何问题的json
var j = JObject.Parse(jsonString);
您甚至可以使用dynamic
关键字
dynamic j = JObject.Parse(jsonString);
Console.WriteLine("{0},{1}", j.title, j.body.und[0].value);