2

我写在这里是因为我想我用尽了我能得到的所有资源。我的抽象/方法一定有什么严重的错误,因为我不能让它正常工作。任务非常简单 - 我需要遍历从 json 输入生成的嵌套列表(??)(或者我可能从头开始做错了)​​。使用带有这个 json 的 jquery 效果很好,但这次我需要在服务器端处理数据。

我得到了 json 输入(下面的示例摘录):

{
   "services":[
      {
         "service_status":"CRITICAL",
         "service_host":{
            "host_status":2,
            "host_address":"192.168.1.12",
            "host_name":"test1app_srv",
            "host_problem_has_been_acknowledged":0,
            "host_has_comments":0,
            "host_notifications_enabled":1,
            "host_checks_enabled":1,
            "host_is_flapping":0,
            "host_scheduled_downtime_depth":0,
            "host_notes_url":"",
            "host_action_url":"",
            "host_icon_image":"server.gif"
         },
         "service_description":"test1app_srv",
         "service_problem_has_been_acknowledged":0,
         "service_has_comments":0,
         "service_accept_passive_service_checks":1,
         "service_notifications_enabled":1,
         "service_checks_enabled":1,
         "service_is_flapping":0,
         "service_scheduled_downtime_depth":0,
         "service_notes_url":"",
         "service_action_url":"",
         "service_icon_image":"services.gif",
         "service_state_duration":" 0d  0h  2m  7s",
         "service_last_check":"04-27-2013 23:49:55",
         "service_current_attempt":1,
         "service_max_attempts":1,
         "service_plugin_output":"CRITICAL - Throughput : Threshold '600' failed for value 720"
      },
      {}
   ]
}

从中,使用http://json2csharp.com/我生成了 c# 类:

public class ServiceHost
{
    public int host_status { get; set; }
    public string host_address { get; set; }
    public string host_name { get; set; }
    public int host_problem_has_been_acknowledged { get; set; }
    public int host_has_comments { get; set; }
    public int host_notifications_enabled { get; set; }
    public int host_checks_enabled { get; set; }
    public int host_is_flapping { get; set; }
    public int host_scheduled_downtime_depth { get; set; }
    public string host_notes_url { get; set; }
    public string host_action_url { get; set; }
    public string host_icon_image { get; set; }
}

public class Service
{
    public string service_status { get; set; }
    public ServiceHost service_host { get; set; }
    public string service_description { get; set; }
    public int service_problem_has_been_acknowledged { get; set; }
    public int service_has_comments { get; set; }
    public int service_accept_passive_service_checks { get; set; }
    public int service_notifications_enabled { get; set; }
    public int service_checks_enabled { get; set; }
    public int service_is_flapping { get; set; }
    public int service_scheduled_downtime_depth { get; set; }
    public string service_notes_url { get; set; }
    public string service_action_url { get; set; }
    public string service_icon_image { get; set; }
    public string service_state_duration { get; set; }
    public string service_last_check { get; set; }
    public int service_current_attempt { get; set; }
    public int service_max_attempts { get; set; }
    public string service_plugin_output { get; set; }
}

public class NagiosRootObject
{
    public List<Service> services { get; set; }
}

我设法获取了 NagiosRootObject.services 内容,但我无法从 Service.service_host 访问值。我专注于一种利用

NagiosRootObject obj = JsonConvert.DeserializeObject<NagiosRootObject>(json);

我有以上所有,我正在使用来自http://json.codeplex.com的 Json.NET 。

我已经尝试过提示

很少有相关但没有运气。

知道有这么多教程并且无法使用它让我非常难过.. 帮助将不胜感激。这篇文章是完成这项任务的最后手段……我需要认真的提示。谢谢你

4

3 回答 3

0

你有没有尝试过:

var obj = new JavaScriptSerializer().Deserialize<NagiosRootObject>(jsonString);
于 2013-04-29T08:11:32.850 回答
0

使用json.NET,以下代码可以工作:(将您的 json 放入名为“json.txt”的文件中)

using (var reader = File.OpenText("json.txt"))
{
    var ser = JsonSerializer.Create(null);
    var jReader = new JsonTextReader(reader);
    var grp = ser.Deserialize<NagiosRootObject>(jReader);

}

但是,该列表由两个对象填充,在第二个对象中,所有值都是null. 这是因为您的 json 中有一个空元素{}

编辑:您的代码在我的测试中同样有效,因此无需更改它。

于 2013-04-29T08:06:39.450 回答
-5

如果您想在服务器中解析这个 json,那么最好将这个 json 解析成 XML 并利用该 xml 进行遍历。在服务器端编码 xml 遍历很容易。尤其是在 C# 中。

使用 newtonsoft dll 将 json 转换为 XMl 或反之亦然。将 json 解析为 XMl 的代码是

 XmlDocument doc = (XmlDocument)JsonConvert.DeserializeXmlNode(json);

从链接 http://json.codeplex.com/ Dpwnload dll

我希望这能帮到您。

于 2013-04-29T08:05:21.163 回答