I want to parse JSON which looks like this:
{
"A": [
[
"content1"
],
[
"content2"
]
]
}
I need content1 and content2 as a String.
What I tried
String content = object.getString("A");
but with this I get a String which includes content1 and content2.
I need it seperated because I add it to GridView later.
This is not a duplicate of the question which is marked, look at the JSON it is different.