org.json.JSONObject 使用记录

1. 字符串转jsonObject

  • JSONObject from = new JSONObject("xxxx");

2. 获取值,取值时注意不要从根节点取值,直接取下面值就可以了

String key = from.optString(key);
String key = from.optInt(key);

你可能感兴趣的:(org.json.JSONObject 使用记录)