In Java, I have a string output like this but I have no idea about how to deal with
I mean when I WriteLine(myString)
or printLn(myString)
[["-1.816513","52.5487566"],["-1.8164913","52.548824"]]
after parsing it should be a list of string's list like below
List<List<Sring>> myList
list.get(0).get(0);
should give me "-1.816513"
Any idea about how to parse this string to this list?