I know lot of people asked similars questions but, hell I'm stuck and I don't understand why. That's weird because the JSON is valid on jsonlint :
{
    "Name": "Geography",
    "Questions": [{
        "_question": "Where is Max?",
        "_answers": ["France", "USA", "Spain", "Tunisia"],
        "_correctOne": 2,
        "Asked": false,
        "ID": 0
    }, {
        "_question": "Where is the Eiffel Tower?",
        "_answers": ["Marseilles", "Le Mans", "Paris", "Lyon"],
        "_correctOne": 3,
        "Asked": false,
        "ID": 1
    }, {
        "_question": "Where is Barcelona?",
        "_answers": ["Italy", "Germany", "Portugual", "Spain"],
        "_correctOne": 4,
        "Asked": false,
        "ID": 2
    }, {
        "_question": "Where is Malibu point?",
        "_answers": ["San Francisco", "San Diego", "Los Angeles", "It\u0027s just in a movie"],
        "_correctOne": 3,
        "Asked": false,
        "ID": 3
    }, {
        "_question": "Where takes place the famous 24h of Le Mans?",
        "_answers": ["France", "Belgium", "Canada", "Martinique"],
        "_correctOne": 1,
        "Asked": false,
        "ID": 4
    }, {
        "_question": "Which one of the following countries is the biggest one?",
        "_answers": ["Mexico", "USA", "Russia", "India"],
        "_correctOne": 3,
        "Asked": false,
        "ID": 5
    }, {
        "_question": "Where can you find a Camel?",
        "_answers": ["Siberia", "Antartic", "Artic", "Sahara"],
        "_correctOne": 4,
        "Asked": false,
        "ID": 6
    }, {
        "_question": "Where can\u0027t you find the statue of the liberty?",
        "_answers": ["New York", "Paris", "Las Vegas", "Strasbourg"],
        "_correctOne": 2,
        "Asked": false,
        "ID": 7
    }, {
        "_question": "What did Christophe Colomb has discovered?",
        "_answers": ["Europe", "America", "Africa", "Asia"],
        "_correctOne": 2,
        "Asked": false,
        "ID": 8
    }, {
        "_question": "Where can\u0027t you practice sky?",
        "_answers": ["Maroco", "Canada", "Norway", "Dubaï"],
        "_correctOne": 1,
        "Asked": false,
        "ID": 9
    }, {
        "_question": "Which one of the following countries isn\u0027t a neighboor of the France?",
        "_answers": ["Germany", "Italy", "Spain", "Portugual"],
        "_correctOne": 4,
        "Asked": false,
        "ID": 10
    }]
}
So, it's just an ArrayList<Category>. Category is the following class:
public class Category {
    public String Name;
    public ArrayList<Question> Questions;
}
Also, the Question class below:
public class Question {
    private String _question;
    private String[] _answers;
    private int _correctOne;
    public boolean Asked;
    public int ID;
}
Everything seems alright to me, I checked again and again, still have this error. However, something seems weird, each ' is replaced by \u0027, but it doesn't seems to be the problem..
I'm parsing the Gson from the following function:
public static boolean ReadCategoryFileTxt(Category category) {
    try {
        File file = new File(category.Name + ".txt");
        Scanner sc = new Scanner(file);
        String JSONString = "";
        while (sc.hasNextLine()) 
            JSONString += sc.nextLine();
        Gson gson = new Gson();
        Category _category = gson.fromJson(JSONString, Category.class);
        category.Name = _category.Name;
        category.Questions = _category.Questions;
        //Debug.Println(gson.toJson(category, Category.class));
        sc.close();
    }
    catch (Exception e)
    {
        Debug.PrintException(e);
        return (false);
    }
    return (true);
}
Any idea for this "Expected BEGIN_OBJECT but was STRING at line 1 column 4"?
Thank in advance !
 
     
     
    