This is my JSON Array :-
[ { \"firstName\" : \"abc\", \"lastName\" : \"xyz\" }, { \"firstName\" : \"pqr\", \"
use below simple code, no need to use any library
String list = "your_json_string"; Gson gson = new Gson(); Type listType = new TypeToken>() {}.getType(); ArrayList users = new Gson().fromJson(list , listType);