JIT。最好的方式序列化为json

时间:2012-06-15 11:50:15

标签: c# json serialization thejit

我需要为the jit库创建一个自定义json。我应该使用额外的C#逻辑还是以某种方式扩展JsonSerializer。 Json应该是这样的 - >

var json = {
    "children": [
 {
     "children": [
     {
         "children": [],
         "data": {
             "playcount": "276",
             "$color": "#8E7032",
             "image": "http://userserve-ak.last.fm/serve/300x300/11403219.jpg",
             "$area": 276
         },
         "id": "album-Thirteenth Step",
         "name": "Thirteenth Step"
     }
}] 

}

4 个答案:

答案 0 :(得分:4)

使用Json.Net

public void Test()
{
    Node root = new Node();
    Node child = new Node();
    Data data = new Data() { Area = 276, Color = "#8E7032", PlayCount = "276", Image = "http://userserve-ak.last.fm/serve/300x300/11403219.jpg" };
    Node grandChild = new Node() { Id = "album-Thirteenth Step", Name = "Thirteenth Step", Data = data };

    root.Children.Add(child);
    child.Children.Add(grandChild);

    var json = JsonConvert.SerializeObject(
                              root, 
                              new JsonSerializerSettings() {  
                                  NullValueHandling= NullValueHandling.Ignore,
                                  Formatting= Newtonsoft.Json.Formatting.Indented
                              });
}

public class Node
{
    [JsonProperty("children")]
    public List<Node> Children = new List<Node>();

    [JsonProperty("data")]
    public Data Data;

    [JsonProperty("id")]
    public string Id;

    [JsonProperty("name")]
    public string Name;
}

public class Data
{
    [JsonProperty("playcount")]
    public string PlayCount;

    [JsonProperty("$color")]
    public string Color;

    [JsonProperty("image")]
    public string Image;

    [JsonProperty("$area")]
    public int Area;
}

答案 1 :(得分:1)

你有关于Json.net的事吗?

http://json.codeplex.com/

至少你会有一个很好的定制空间+一个更好的序列化器

答案 2 :(得分:1)

json - 使用json的最佳工具

答案 3 :(得分:0)

ServiceStack.Text是最快的。

对于基准:http://www.servicestack.net/benchmarks/