How to convert json to ArrayList<ArrayList> in java.
Corresponding c# code using NewtonJson is like:
JsonConvert.DeserializeObject<List<List<Object>>>(jsonstr)
But what would it be in Java? I could not find package for this.
If target type were some class then it would be easy using gson. But my problem is target type being double list ArrayList<ArrayList>.
Regards Orgil.D