“Konvertieren Sie JSON in ArrayList Java” Code-Antworten

Arraylist zum JSON -Array

ArrayList<String> list = new ArrayList<String>();
list.add("foo");
list.add("baar");
JSONArray jsArray = new JSONArray(list);
Adventurous Anteater

Konvertieren Sie JSON in ArrayList Java

// Top of file
import java.lang.reflect.Type;

// ...

private void parseJSON() {
    Gson gson = new Gson();
    Type type = new TypeToken<List<ContactModel>>(){}.getType();
    List<ContactModel> contactList = gson.fromJson(jsonString, type);
    for (ContactModel contact : contactList){
        Log.i("Contact Details", contact.id + "-" + contact.name + "-" + contact.email);
    }
}
Blue Bat

Ähnliche Antworten wie “Konvertieren Sie JSON in ArrayList Java”

Fragen ähnlich wie “Konvertieren Sie JSON in ArrayList Java”

Weitere verwandte Antworten zu “Konvertieren Sie JSON in ArrayList Java” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen