I have a webservice that returns a list of strings, only a list of strings:
["string1","string2","string3"]
How can I convert this into an ArrayList<String> in java? I'm trying to use jackson as I know you can convert Json to objects with it, but I can't find an example of a case like this.