JSONObjectを使用してJavaで正しいJSONArrayを作成する方法


129

JSONObjectを使用してJavaで次のようなJSONオブジェクトを作成するにはどうすればよいですか?

{
    "employees": [
        {"firstName": "John", "lastName": "Doe"}, 
        {"firstName": "Anna", "lastName": "Smith"}, 
        {"firstName": "Peter", "lastName": "Jones"}
    ],
    "manager": [
        {"firstName": "John", "lastName": "Doe"}, 
        {"firstName": "Anna", "lastName": "Smith"}, 
        {"firstName": "Peter", "lastName": "Jones"}
    ]
}

多くの例を見つけましたが、正確にはJSONArray文字列ではありません。

回答:


247

以下は、Java 6を使用して開始するコードです。

JSONObject jo = new JSONObject();
jo.put("firstName", "John");
jo.put("lastName", "Doe");

JSONArray ja = new JSONArray();
ja.put(jo);

JSONObject mainObj = new JSONObject();
mainObj.put("employees", ja);

編集:put vs について多くの混乱があったのでadd、違いを説明しようと思います。java 6ではorg.json.JSONArrayputメソッドが含まれ、java 7 ではjavax.jsonaddメソッドが含まれます。

Java 7でビルダーパターンを使用したこの例は、次のようになります。

JsonObject jo = Json.createObjectBuilder()
  .add("employees", Json.createArrayBuilder()
    .add(Json.createObjectBuilder()
      .add("firstName", "John")
      .add("lastName", "Doe")))
  .build();

3
多分また、try / catchにラップしますか?(またはメソッドはthrowsステートメントを持っている必要があります)
Lukas1

8
JSONArrayにはputメソッドがありません。
Jim

2
putの代わりにaddを使用
CleanX

1
@PT_C yep JsonObject jo = Json.createObjectBuilder(); jo.add( "firstName"、 "John"); jo.add( "lastName"、 "Doe"); jo.build();
Grammin 2015

1
@ArnoldBrown mainObjに配列を追加するには、キーが必要です。
Grammin

15

サーバーまたはファイルからこのJSONを取得していて、そこからJSONArrayオブジェクトを作成するとします。

String strJSON = ""; // your string goes here
JSONArray jArray = (JSONArray) new JSONTokener(strJSON).nextValue();
// once you get the array, you may check items like
JSONOBject jObject = jArray.getJSONObject(0);

お役に立てれば :)


11

小さな再利用可能なメソッドを作成して、人のJSONオブジェクトを作成し、コードの重複を回避できます。

JSONObject  getPerson(String firstName, String lastName){
   JSONObject person = new JSONObject();
   person .put("firstName", firstName);
   person .put("lastName", lastName);
   return person ;
} 

public JSONObject getJsonResponse(){

    JSONArray employees = new JSONArray();
    employees.put(getPerson("John","Doe"));
    employees.put(getPerson("Anna","Smith"));
    employees.put(getPerson("Peter","Jones"));

    JSONArray managers = new JSONArray();
    managers.put(getPerson("John","Doe"));
    managers.put(getPerson("Anna","Smith"));
    managers.put(getPerson("Peter","Jones"));

    JSONObject response= new JSONObject();
    response.put("employees", employees );
    response.put("manager", managers );
    return response;
  }

1

これを試してください...それが役に立てば幸い

JSONObject jsonObj1=null;
JSONObject jsonObj2=null;
JSONArray array=new JSONArray();
JSONArray array2=new JSONArray();

jsonObj1=new JSONObject();
jsonObj2=new JSONObject();


array.put(new JSONObject().put("firstName", "John").put("lastName","Doe"))
.put(new JSONObject().put("firstName", "Anna").put("v", "Smith"))
.put(new JSONObject().put("firstName", "Peter").put("v", "Jones"));

array2.put(new JSONObject().put("firstName", "John").put("lastName","Doe"))
.put(new JSONObject().put("firstName", "Anna").put("v", "Smith"))
.put(new JSONObject().put("firstName", "Peter").put("v", "Jones"));

jsonObj1.put("employees", array);
jsonObj1.put("manager", array2);

Response response = null;
response = Response.status(Status.OK).entity(jsonObj1.toString()).build();
return response;
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.