本文目录一览:
- 1、java 怎么将jsonarray转换成list
- 2、如何通过Java代码将JsonArray转化为list集合
- 3、Java中如何将Json中的某属性转为一个List?
- 4、json字符串怎么转化为list
java 怎么将jsonarray转换成list
List list = new ArrayList();
String mimeType=null;
for(int i=0;ij.length();i++){
JSONObject request=j.getJSONObject(i).getJSONObject("request");
JSONObject postData=request.getJSONObject("postData");
mimeType=postData.getString("mimeType");
list.add(mimeType);
set.addAll(list);
}
我曾经写过的一个jsonarray转list ,修改下变量名即可,其中的j 是JSONArray的对象
如何通过Java代码将JsonArray转化为list集合
定义一个新的java对象,对象中的字段对应JsonArray中的字段,如果已经有这样的对象,那么就不用定义了。然后使用deviceList = (ListDeviceAddDyn) jsonArray.toCollection(jsonArray, DeviceAddDyn.class);其中DeviceAddDyn是自己定义的类名,如果已有,可以直接替换类名即可。
Java中如何将Json中的某属性转为一个List?
这个简单,分三步,第一步,先将原来的json中的people取出来放到arrayjson里面,第二步,遍历arrayjson,将每个属性取出来合并成一个,最后将合并的每个属性转换成json
json字符串怎么转化为list
import java.util.HashMap;
import java.util.Map;
import net.sf.json.JSONObject;
public class Test {
public static void main(String[] args) {
String json = "{\"name\":\"reiz\"}";
JSONObject jsonObj = JSONObject.fromObject(json);
String name = jsonObj.getString("name");
jsonObj.put("initial", name.substring(0, 1).toUpperCase());
String[] likes = new String[] { "JavaScript", "Skiing", "Apple Pie" };
jsonObj.put("likes", likes);
Map String, String ingredients = new HashMap String, String();
ingredients.put("apples", "3kg");
ingredients.put("sugar", "1kg");
ingredients.put("pastry", "2.4kg");
ingredients.put("bestEaten", "outdoors");
jsonObj.put("ingredients",ingredients);
System.out.println(jsonObj);
}
}
//这是使用org.json的程序:
import java.util.HashMap;
import java.util.Map;
import org.json.JSONException;
import org.json.JSONObject;
public class Test {
public static void main(String[] args) throws JSONException {
String json = "{\"name\":\"reiz\"}";
JSONObject jsonObj = new JSONObject(json);
String name = jsonObj.getString("name");
jsonObj.put("initial", name.substring(0, 1).toUpperCase());
String[] likes = new String[] { "JavaScript", "Skiing", "Apple Pie" };
jsonObj.put("likes", likes);
Map String, String ingredients = new HashMap String, String();
ingredients.put("apples", "3kg");
ingredients.put("sugar", "1kg");
ingredients.put("pastry", "2.4kg");
ingredients.put("bestEaten", "outdoors");
jsonObj.put("ingredients", ingredients);
System.out.println(jsonObj);
System.out.println(jsonObj);
}
}
//两者的使用几乎是相同的,但org.json比json-lib要轻量得多,前者没有任何依赖,而后者要依赖ezmorph和commons的lang、logging、beanutils、collections等//组件。