I have a JSON structure as given below. How can I create this Array structure programmatically?
JSON srtucture:
{ \"Employee\":
I'd probably use the GSON library which will marshall Java objects.
There's an array example to get you started, as well as a ton of others in the user guide.