GSON throwing “Expected BEGIN_OBJECT but was BEGIN_ARRAY”
Used the following code snippet to make it to work.
Type collectionType = new TypeToken<Collection>>(){}.getType();
Collection>
enums = gson.fromJson(yourJson, collectionType);
Type collectionType = new TypeToken<Collection>>(){}.getType();
Collection>
enums = gson.fromJson(yourJson, collectionType);
Python Basics How to check the version of Python interpreter mac terminal
No comments:
Post a Comment