I want to parse json data into java object using google-gson.
Here is an example of the data I want to parse:
{\"isBean\":{\"userName\":\"test\",\
The problem is solved With the help of Stackoverflow Answer.
Create gson object:
Gson gson = new GsonBuilder().registerTypeAdapter(IsBean.class, new InterfaceAdapter()).create();