android开发技术交流

Json解析库Moshi

2018-01-29  本文已影响0人  wangyf0620

什么是Moshi?

moshi是square团队发布在GitHub上的Json解析库 GitHub

用法

compile 'com.squareup.moshi:moshi:1.2.0'
class PersonList {
    Map<String, Person> list;
}

class Person {
    int age;
    Sex sex;
}

enum Sex {
    MAN,
    WOMAN
}
String json = "xxxxxxx";

Moshi moshi = new Moshi.Builder().build();
JsonAdapter<PersonList> jsonAdapter = moshi.adapter(PersonList.class);

try {
    PersonList personList = jsonAdapter.fromJson(json);
} catch (Exception e) {
    Log.e("json parse error", "parsePersonList: ", e);
}
上一篇 下一篇

猜你喜欢

热点阅读