我实际上以这种方式将我的 pojo 数据转换为 json 字符串,
Gson gson = new GsonBuilder().disableHtmlEscaping().create();
String json=gson.toJson(user);
我得到了 json 字符串,但这不是我真正需要的格式,我得到了
json = {"userID":300,"userName":"asd","password":"s","enabled":1}
所以,我想用下面的键值对转换 Json 字符串,
{"userID":300,"userName":"asd","password":"s","enabled":1}
进入只有值(没有键)的 Json 字符串,如下所示
[300,"asd","s",1]