25

我试图弄清楚如何将以下数据添加到我的 json 对象中。有人可以告诉我如何做到这一点。

网站示例

$(document).ready(function() {
  $('#example').dataTable( {
    "aoColumnDefs": [
     { "aDataSort": [ 0, 1 ], "aTargets": [ 0 ] },
     { "aDataSort": [ 1, 0 ], "aTargets": [ 1 ] },
     { "aDataSort": [ 2, 3, 4 ], "aTargets": [ 2 ] }
   ]
  } );
} );

我的 JSONObject 需要合并上面的例子。

    JSONObject json = new JSONObject();
    json.put("aoColumnDefs", );
4

3 回答 3

35

为了得到这个结果:

{"aoColumnDefs":[{"aTargets":[0],"aDataSort":[0,1]},{"aTargets":[1],"aDataSort":[1,0]},{"aTargets":[2],"aDataSort":[2,3,4]}]}

包含与以下相同的数据:

  {
    "aoColumnDefs": [
     { "aDataSort": [ 0, 1 ], "aTargets": [ 0 ] },
     { "aDataSort": [ 1, 0 ], "aTargets": [ 1 ] },
     { "aDataSort": [ 2, 3, 4 ], "aTargets": [ 2 ] }
   ]
  }

您可以使用以下代码:

    JSONObject jo = new JSONObject();
    Collection<JSONObject> items = new ArrayList<JSONObject>();

    JSONObject item1 = new JSONObject();
    item1.put("aDataSort", new JSONArray(0, 1));
    item1.put("aTargets", new JSONArray(0));
    items.add(item1);
    JSONObject item2 = new JSONObject();
    item2.put("aDataSort", new JSONArray(1, 0));
    item2.put("aTargets", new JSONArray(1));
    items.add(item2);
    JSONObject item3 = new JSONObject();
    item3.put("aDataSort", new JSONArray(2, 3, 4));
    item3.put("aTargets", new JSONArray(2));
    items.add(item3);

    jo.put("aoColumnDefs", new JSONArray(items));

    System.out.println(jo.toString());
于 2012-06-21T17:26:42.937 回答
18

答案是也使用JSONArray,并“深入”到树结构中:

JSONArray arr = new JSONArray();
arr.put (...); // a new JSONObject()
arr.put (...); // a new JSONObject()

JSONObject json = new JSONObject();
json.put ("aoColumnDefs",arr);
于 2012-06-21T17:23:37.970 回答
3

Francisco Spaeth 接受的答案有效且易于理解。但是,我认为构建 JSON 的方法很糟糕!这对我来说真的很重要,因为我将一些 Python 转换为 Java,我可以在其中使用字典和嵌套列表等轻松地构建 JSON。

我真正不喜欢的是必须实例化单独的对象(通常甚至命名它们)来构建这些嵌套。如果你有很多对象或数据要处理,或者你的使用比较抽象,那真的很痛苦!

我尝试通过清除和重用 temp json 对象和列表来解决其中的一些问题,但这对我不起作用,因为这些 Java 对象中的所有 put 和 get 等都是通过引用而不是 value 工作的。所以,在仍然有一些丑陋(尽管风格不同)的代码之后,我最终会得到包含一堆乱七八糟数据的 JSON 对象。

所以,这就是我想出的清理它的方法。它可以使用进一步的开发,但这应该有助于为那些寻找更合理的 JSON 构建代码的人提供基础:

import java.util.AbstractMap.SimpleEntry;
import java.util.ArrayList;
import java.util.List;
import org.json.simple.JSONObject;

//  create and initialize an object 
public static JSONObject buildObject( final SimpleEntry... entries ) { 
    JSONObject object = new JSONObject();
    for( SimpleEntry e : entries ) object.put( e.getKey(), e.getValue() );
    return object;
}

//  nest a list of objects inside another                          
public static void putObjects( final JSONObject parentObject, final String key,
                               final JSONObject... objects ) { 
    List objectList = new ArrayList<JSONObject>();
    for( JSONObject o : objects ) objectList.add( o );
    parentObject.put( key, objectList );
}   

实现示例:

JSONObject jsonRequest = new JSONObject();
putObjects( jsonRequest, "parent1Key",
    buildObject( 
        new SimpleEntry( "child1Key1", "someValue" )
      , new SimpleEntry( "child1Key2", "someValue" ) 
    )
  , buildObject( 
        new SimpleEntry( "child2Key1", "someValue" )
      , new SimpleEntry( "child2Key2", "someValue" ) 
    )
);      
于 2016-09-22T16:36:00.847 回答