我需要使用java创建json字符串:在 ADDTNLINFO 元素下如何添加多个元素标记。可以提供任何帮助吗?
{
"ADDTNLINFO":
{
"Tag":
{
"name": "a",
"value": "10"
},
"Tag":
{
"name": "a b",
"value": "20"
},
"Tag":
{
"name": "a b c",
"value": "30"
}
}
}
答案 0 :(得分:0)
import com.google.gson.Gson;
List<Dto> beans = service.something();
Gson gson = new Gson();
// convert your list to json
String jsonCartList = gson.toJson(beans);
您需要为Google gson添加依赖关系,它将根据您的要求