0

好的,所以我有这个字符串:

[{"id":1},{"id":2,"children":[{"id":3},{"id":4,"children":[{"id":5,"children":[{"id":6}]}]},{"id":7}]}]

我希望能够解析它并将其用作有意义的数据来输入我的数据库。

解析后的输出,作为一个数组/或者如果您认为从中提取数据更好,您可以建议不同的输出。这只是我的想法。

[0]  id:1
[1]  id:2 -> id:3, id:4 -> id:5 -> id:6
[2]  id:7

这甚至可以用正则表达式吗

为了让你更好地理解,我为什么问你这个。我在这里有一个树结构:

演示:http: //jsbin.com/UXIpAHU/3/edit

我希望能够解析输出并将其保存到 sql 数据库中,有 2 列

ID 列包含所有项目的所有 ID,但只有子 ID 或有父 ID 的 ID 才会有 parentID。所以基于 DEMO 的 sql 表看起来像这样:

ID | ParentID
------------------------
1     NULL
2     NULL
3      2
4      2
5      4
6      5
7      2

实现这一目标的最佳方法是什么,我正在为我的问题寻找一些想法/解决方案。谢谢你。

4

3 回答 3

1

OP更改了问题,因此以下内容基于上一个问题:

如果您控制输出,那么您应该使用 XML 作为您的传输语言。它使用起来非常简单,并且在 C# 中内置了对它的支持。

你的结果来自这个:

{"id":1},{"id":2->"children":{"id":3},{"id":4->"children":{"id":5->"children":{"id":6}}},{"id":7}}

会成为:

<root>
    <item id="1" />
    <item id="2">
        <item id="3" />
        <item id="4">
            <item id="5">
                <item id="6" />
            </item>
        </item>
        <item id="7" />
    </item>
</root>

然后你可以阅读它:

XElement root = XElement.Parse(xml); // or .Load(file)
Dictionary<int,int?> list = root.Descendants("item")
    .ToDictionary(x => (int)x.Attribute("id"), x => 
    {
        var parentId = x.Parent.Attribute("id");
        if (parentId == null)
            return null;
        return (int)parentId;
    });

现在你有了一个键值对的字典列表,就像你想要的那样

ID | ParentID
------------------------
1     NULL
2     NULL
3      2
4      2
5      4
6      5
7      2

=== 转换回来 ===

Dictionary<int, int?> dic = new Dictionary<int, int?>
{
    {1,null},
    {2,null},
    {3,2},
    {4,2},
    {5,4},
    {6,5},
    {7,2}
};

XElement root = new XElement("root");
foreach (var kvp in dic)
{
    XElement node = new XElement("item", new XAttribute("id", kvp.Key));

    int? parentId = kvp.Value;
    if (null == parentId)
        root.Add(node);
    else
    {
        // Get first item with id of parentId
        XElement parent = root.Descendants("item")
            .FirstOrDefault(i => (int)i.Attribute("id") == (int)parentId);
        if (null != parent) // which it shouldn't for our array
            parent.Add(node);
    }
}

要获取字符串,请使用:

string xml = root.ToString();

或保存到文件:

root.Save("filepath");
于 2013-10-04T14:54:13.007 回答
1

您可以将其反序列化为一个类并轻松地从那里提取数据。

请注意 System.Web.Script.Serialization.JavaScriptSerializer 在 System.Web.Extensions

[Serializable()]
public class Info
{
 private int _id;

 private List<Info> _children;
 public int Id {
  get { return _id; }
  set { _id = value; }
 }

 public List<Info> Children {
  get { return _children; }
  set { _children = value; }
 }

}


public void Main()
{
 string json = null;
 List<Info> result = null;
 System.Web.Script.Serialization.JavaScriptSerializer ser = new System.Web.Script.Serialization.JavaScriptSerializer();

 json = "[{\"id\":1},{\"id\":2,\"children\":[{\"id\":3},{\"id\":4,\"children\":[{\"id\":5,\"children\":[{\"id\":6}]}]},{\"id\":7}]}]";

 result = ser.Deserialize<List<Info>>(json);

 foreach (Info p in result) {
  Console.WriteLine(p.Id);

  if (p.Children != null) {
   foreach (Info c in p.Children) {
    Console.WriteLine("   " + c.Id);
   }
  }
 }

 Console.ReadLine();

}
于 2013-10-04T15:25:04.487 回答
1

使用Json.NET,您可以简单地将字符串传入以获取 JObject 的 JArray:

JArray arr = JArray.Parse(yourString)

然后,您可以像在任何支持 LINQ 的集合上一样使用 LINQ。

于 2013-10-04T15:39:42.593 回答