私はこれは、JSONのpbject JSONObject jsonObject =新しいJSONObject()のために、私が持っているコードでPOSTAndroid用のJSONに階層を含めるにはどうすればよいですか?
{
"header1" : {
"message" : {
"content" : "Hello",
"type" : "text"
},
"header2" : {
"address" : "[email protected]"
}
}
}
でサーバーに送信したいと思い、このJSONファイルを持っています。
jsonObject.put("content", "hello");
jsonObject.put("type", "text");
jsonObject.put("address", "[email protected]");
String message = jsonObject.toString();
私の質問はどのように階層をコード化するのですか?header1、message、およびheader2?