I found a way to parse array of arrays in here with gson.. but I need it with json simple..
here's my json file:
{
"matrix" : [
[6,"",3,8,"A"],
["","B",1,"A",9]
]
}
The arrays are made of strings, integers and null, is there a way to parse them into an ArrayList of ArrayList of objects so when I use it I can cast these single values into the right type?