Have a requirement where jsonarray data is to be converted and written in an excel file in JAVA. Below is a sample format of the JSON that i receive from the rest api of a marketing tool ActOn:
{
"offset":0,
"count":3,
"totalCount":300,
"result":[
{
"a1":a,
"b1":b,
"c1":c
},
{
"a2":a,
"b2":b,
"c2":c
},
{
"a3":a,
"b3":b,
"c3":c
},
.
.
.
.
.
.
,
{
"an":a,
"bn":b,
"cn":c
}
]