我第一次使用json,在网上搜索后发现了JSON.NET。我觉得它很容易使用,但我有一个问题。每次我使用代码时都会收到警告:
无法将当前JSON数组(例如[1,2,3])反序列化为类型' JSON_WEB_API.Machine'因为该类型需要一个JSON对象(例如{" name":" value"})才能正确反序列化。
这是来自URL的JSON数组:
[
{
"id": "MachineTool 1",
"guid": "not implemented",
"name": "Individueller Maschinenname",
},
{
"id": "MachineTool 2",
"guid": "not implemented",
"name": "Individueller Maschinenname",
}
]
这是代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
using System.Runtime.Serialization;
using Newtonsoft.Json;
namespace JSON_WEB_API
{
class Program
{
static void Main()
{
string json = new WebClient().DownloadString("http://localhost:12084/Machines?format=json");
Console.WriteLine(json);
//string json = @"[{"id":"MachineTool 1","guid":"not implemented","name":"Individueller Maschinenname"},{"id":"MachineTool 2","guid":"not implemented","name":"Individueller Maschinenname"}]
//Console.WriteLine(json)";
Machine machine = JsonConvert.DeserializeObject<Machine>(json);
Console.WriteLine(machine.id);
Console.Read();
}
}
[DataContract]
class Machine
{
[DataMember]
internal string id { get; set; }
[DataMember]
internal string guid { get; set; }
[DataMember]
internal string name { get; set; }
}
}
答案 0 :(得分:4)
将其转换为机器列表
var machine = JsonConvert.DeserializeObject<List<Machine>>(json);
要访问数据,请在机器上运行foreach。
foreach(var data in machine )
{
Console.WriteLine(data.id);
}
答案 1 :(得分:2)
查看您的JSON:
[
{
"id": "MachineTool 1",
"guid": "not implemented",
"name": "Individueller Maschinenname",
},
{
"id": "MachineTool 2",
"guid": "not implemented",
"name": "Individueller Maschinenname",
}
]
这是一个JSON数组。
并查看您的JSON转换代码:
Machine machine = JsonConvert.DeserializeObject<Machine>(json);
您正在使用Machine对象进行转换。
但你有json数组作为响应。 您需要将JSON转换代码更改为:
要在Array中转换它,请使用以下代码:
Machine[] machines = JsonConvert.DeserializeObject.Deserialize<Machine[]>(json);
要在列表中转换它,请使用以下代码:
List<Machine> machines = JsonConvert.DeserializeObject<List<Machine>>(json);
答案 2 :(得分:0)
使用
装饰您的模型[DataContract]
class Machine
{
[DataMember]
[JsonProperty("id ")]
internal string id { get; set; }
[DataMember]
[JsonProperty("guid ")]
internal string guid { get; set; }
[DataMember]
[JsonProperty("name")]
internal string name { get; set; }
}
public class MachineJson
{
[JsonProperty("machine")]
public Machine Machine{ get; set; }
}
var machine = JsonConvert.DeserializeObject<List<MachineJson>>(json);