I have a string with this data:
mystring_json = "[{"id":"a373e3e15bac1eeb001785b40a219d","dataInserimento":"2016-09-15 09:30:14","dataPubblicazione":"2016-09-15 09:29:00"},{"id":"4b2444b7b737c8d64e7d60c6515217","dataInserimento":"2016-09-15 08:32:04","dataPubblicazione":"2016-09-15 08:28:00"}...]";
I have a class Poi:
public class Poi {
public String id;
private String dataInserimento;
private String dataPubblicazione;
}
I create a 'Poi' list:
List<Poi> ppp = new ArrayList<>();
I have to put my_string_json data to 'ppp' list.
How can i do this? I'm sorry for my english.