JSON to Java class

后端 未结 4 620
说谎
说谎 2021-02-13 15:22

Is there an easy way to map data from JSON to fields of my class by means of android APIs?

JSON:

{ email: \'email\', password: \'pass\' }
4条回答
  •  既然无缘
    2021-02-13 15:34

    Use Jackson. Much more convenient (and if performance matters, faster) than using bundled org.json classes and custom code:

    Credentials c = new ObjectMapper().readValue(jsonString, Credentials.class);
    

    (just note that fields of Credentials need to be 'public' to be discovered; or need to have setter methods)

提交回复
热议问题