Chilkat - 从两个数组生成单个Json数组

问题描述 投票:0回答:1

假设你有以下名为jsonA的Chilkat JsonObject:

"object": "list",
"data": [
 {0},
 {1},
 {2},
 {3},
 {4},
 {5}
],
"has_more": true
}

假设你有相同的以下JsonObject名为jsonB:

"object": "list",
"data": [
  {6},
  {7},
  {8}
  ],
  "has_more": false
  }

利用捆绑包,生成单个“数据”数组的最佳方法是:

"data": [
{0},
{1},
{2},
{3},
{4},
{5},
{6},
{7},
{8}
],

我已经挖掘了Json参考文档,似乎无法找到一个可以做到这一点的方法?每个数组最多可包含100个项目,因此如果可能,我宁愿不必遍历每个项目。

json activexobject chilkat
1个回答
0
投票

这就是我要做的......

首先..语法“{0}”对我没有意义。如果数组项以“{”开头,则它应包含名称/值对,例如:“name”:value

            string strA = @"
{
""object"": ""list"",
""data"": [ 0,1,2,3,4,5 ],
""has_more"": true
}";
            string strB = @"
{
""object"": ""list"",
""data"": [ 6,7,8 ],
""has_more"": false
}";

        Chilkat.JsonObject jsonA = new Chilkat.JsonObject();
        jsonA.Load(strA);

        Chilkat.JsonObject jsonB = new Chilkat.JsonObject();
        jsonB.Load(strB);

        Chilkat.JsonArray a = jsonA.ArrayOf("data");

        int numDataItems = jsonB.SizeOfArray("data");
        int i;
        for (i=0; i<numDataItems; i++)
            {
            jsonB.I = i;
            a.AddIntAt(-1,jsonB.IntOf("data[i]"));
            }

        jsonA.EmitCompact = false;
        textBox1.Text = jsonA.Emit();
© www.soinside.com 2019 - 2024. All rights reserved.