Hey guys, I’m trying to figure out how to deserial...
# announcements
m
Hey guys, I’m trying to figure out how to deserialize/parse an ArrayList from n json string…where the ArrayList object has a generic element type, say
ArrayList<UserActivity>
is the type of the list. anyone have any suggestions on standard practice for ArrayLists? lets say the arrayListString looks something like
{{...somefields...}, {...somefields...}, ... }
where
somefields
are the fields of the UserActivity type.
d
Jackson should handle this just fine.
m
thanks