我正在尝试动态创建一个列表
我尝试动态创建列表,但它不允许创建动态列表
int length = masterList.size();
for (int i = 0; i < length; i++)
{
for (Map.Entry < String, Object > entry: masterList.get(i).entrySet())
{
if(entry.getKey().startsWith("tag_"))
{
ArrayList<String> entry.getKey() = new ArrayList();
tagDataList = Arrays.asList(entry.getValue().toString().split(","));
for (String string : tagDataList)
{
entry.getKey().add(string);
}
}
}
}
输入:
{
"tag_fuse_type": "tag_1,tag_2"
}
所需输出:
{
"tag_fuse_type": [
"tag_1",
"tag_2"
]
}
精慕HU
慕码人2483693
相关分类