I want to program a nested JSON Object for my Android device, but how? I have only basic experience with Json, so I would appreciate if someone could help me with the follow
You need to create a JSON, and add that JSON as a parameter in your POST. To do that you should probably :
JSON
POST
post.add(new BasicNameValuePair("data",json.toString());
You could use org.json.JSONObject, it is included in the Android SDK.
org.json.JSONObject
Android SDK