我可以使用json.net导入这个JSON字符串吗?
本文关键字:JSON 字符串 导入 可以使 json net 我可以 | 更新日期: 2023-09-27 18:10:27
我正在尝试使用json.net读取以下json文件,但我似乎无法使其工作
{
"rootpath": "/dev/dvb/adapter1",
"frontends": {
"DVB-C #2": {
"powersave": false,
"enabled": false,
"priority": 0,
"displayname": "Sony CXD2820R (DVB-C) : DVB-C #1",
"networks": [
],
"type": "DVB-C"
},
"DVB-T #1": {
"powersave": false,
"enabled": true,
"priority": 0,
"displayname": "Sony CXD2820R (DVB-T/T2) : DVB-T #0",
"networks": [
"5225c9f02c93f1cbe9ae35e5bbe6007f"
],
"type": "DVB-T"
},
"DVB-S #0": {
"powersave": false,
"enabled": false,
"priority": 0,
"displayname": "Conexant CX24116/CX24118 : DVB-S #0",
"networks": [
],
"type": "DVB-S",
"satconf": {
"type": "simple",
"diseqc_repeats": 0,
"lnb_poweroff": false,
"elements": [
{
"enabled": false,
"priority": 0,
"networks": [
],
"lnb_type": "Universal",
"uuid": "2db1bb45f2ac9ae5caa63367674caafb",
"lnb_conf": {
}
}
],
"uuid": "94833aabc581ce96d75bb6884a05f20a"
}
}
}
}
我已经尝试使用http://json2csharp.com/创建c#代码,但这失败了。我感觉json在"dvb - c# 2","dvb - t# 1"answers"dvb - s# 0"开头的行上无效。
我正在使用这个命令来尝试反序列化字符串"JsonConvert.DeserializeObject(json)"
谁能证明这是可以做到的?
注。json是由一个名为tvheadend的产品创建的。
对
史蒂夫您的json是有效的。但似乎你有问题的属性名称,如DVB-T #1
(不是一个有效的c#标识符)。如果事先知道属性名称,则可以使用JsonProperty
属性。但在你的情况下,它们似乎是动态的。在这种情况下你可以使用Dictionary
var obj = JsonConvert.DeserializeObject<Root>(json);
public class Root
{
public string rootpath { set; get; }
public Dictionary<string, Item> frontends { set; get; }
}
你的Item
类可以是这样的:
(我使用json2charp和json (DVB-S #0:{this part}
)的一些部分)
public class LnbConf
{
}
public class Element
{
public bool enabled { get; set; }
public int priority { get; set; }
public List<object> networks { get; set; }
public string lnb_type { get; set; }
public string uuid { get; set; }
public LnbConf lnb_conf { get; set; }
}
public class Satconf
{
public string type { get; set; }
public int diseqc_repeats { get; set; }
public bool lnb_poweroff { get; set; }
public List<Element> elements { get; set; }
public string uuid { get; set; }
}
public class Item
{
public bool powersave { get; set; }
public bool enabled { get; set; }
public int priority { get; set; }
public string displayname { get; set; }
public List<object> networks { get; set; }
public string type { get; set; }
public Satconf satconf { get; set; }
}