I am trying to parse the following json array that I receive from my php file:
actionsArray = [["19.431","19.438"],[["8","107"],[]],["u1","u2"]]
I'm primarily interested in accessing the array [["8","107"],[]]; however, I get the error, "com.google.gson.JsonParseException: Expecting array but found object: Name: null Grams: null 0 Actions: null
Here's an excerpt from my code:
User class contains: String name; int[] actions; String grams
JSONArray inputarray;
try {
int[] userActionsArray = new int[0];
inputarray = new JSONArray(br.readLine());
JSONArray gramsArray = (JSONArray)inputarray.get(0);
JSONArray actionsArray = (JSONArray)inputarray.get(1);
JSONArray namesArray = (JSONArray) inputarray.get(2);
User[] values = new User[namesArray.length()];
Gson gson = new Gson();
*User userAction = gson.fromJson(inputarray.toString(), User.class);
//error occurs on the above line*
...