java jsonarray数组怎么拼接
发布网友
发布时间:2022-04-30 16:02
我来回答
共1个回答
热心网友
时间:2022-06-08 09:17
json来做吧,先去下载下jar包。下面是测试的代码:
try{
String str = "{'list':['1,2','3,4','5,6']}";
JSONObject jsonObject = JSONObject.fromObject(str); //吧转为json对象
String array= jsonObject.getString("list"); //获取list的值
JSONArray jsonArray = JSONArray.fromObject(array); //吧list的值转为json数组对象
Object[] strs = jsonArray.toArray(); //json转为数组
for(Object s:strs){
System.out.println(s);
}
}catch(Exception e){e.printStackTrace();}