猿问

请问各位如何在java中创建这种json数据结构

{"userList" : [

    {

        "userId": 1001,

        "userName": "test1"

    },

    {

        "userId": 1002,

        "userName": "test2"

    }

    ...

]}

请问各位如何建立这种数据结构啊

繁华开满天机
浏览 1178回答 2
2回答

慕村225694

这个是 json 串,可以通过后台的一些框架生成。/**&nbsp;* 要返回的json结构&nbsp;**/public class json {&nbsp; &nbsp; private List<User> userList = new ArrayList();&nbsp; &nbsp; //只要给list加入user}public class User {&nbsp; &nbsp; private String userId;&nbsp; &nbsp; private String userName;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; //get set 方法}
随时随地看视频慕课网APP
我要回答