javax.json-1.0.2.jarで使用可能なJsonObjectクラスを使用して、上記のjson形式を構築できます。
JsonObject jo = Json.createObjectBuilder()
.add("data", 2376845)
.add("data2", 12545)
.add("array",Json.createArrayBuilder()
.add(Json.createObjectBuilder().add("data3", "2013-01-10").add("data4", 23532).build())
.add(Json.createObjectBuilder().add("data3", "2013-01-11").add("data4", 523526).build()))
.build();
json形式を構築した後
AsyncHttpClient client=new AsyncHttpClient();
Request request = client.preparePost(your host URL).
setHeader("Content-Type","application/json").
setHeader("Content-Length", ""+jo.toString().length()).setHeader("Authorization","Basic fgfgfgfhfhtetet=").
setBody(jo.toString()).build();
ListenableFuture<Response> r = null;
//ListenableFuture<Integer> f= null;
try{
r = client.executeRequest(request);
System.out.println(r.get().getResponseBody());
}catch(IOException e){
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
基本認証が必要な場合は、base64でエンコードされたusername:passwordの組み合わせであるキーをヘッダーに追加する必要があります。この場合、それを残さない場合は、ヘッダーに追加しました
ほとんどこれはあなたのために働くでしょう
注:AsyncHttpClient、ListenableFutureクラスはasync-http-client-1.7.5.jarで利用できます