最近工作中,经常需要对json做解析,而json的格式又不统一,实际使用也就是获取json中的一个节点值。于是就想通过写json路径的方式来直接拿到节点值,这样就就不用对不同格式的json数据单独写解析方法了。下面这段代码能够很好的解决这个问题,给对于和我有同样需求的童鞋做个参考。另外对于接口测试,在我的phoenixframework平台中的phoenix_interface里面还有很多诸如此类的工具,会给开发工作带来很大的方便。
import java.util.HashMap;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
public class JsonPaser {
/**
* 对节点进行解析
*
* @author mengfeiyang
* @param obj
* @param node
* @return
*/
private static JSONObject getObj(JSONObject obj, String node) {
try {
if (node.contains("[")) {
JSONArray arr = obj.getJSONArray(node.substring(0,node.indexOf("[")));
for (int i = 0; i < arr.length(); i++) {
if ((i + "").equals(node.substring(node.indexOf("["),node.indexOf("]")).replace("[", ""))) {
return arr.getJSONObject(i);
}
}
} else {
return obj.getJSONObject(node);
}
} catch (Exception e) {
return obj;
}
return null;
}
/**
* 获取节点值
* @author mengfeiyang
* @param jsonContent
* @param jsonPath
* @return
* @throws Exception
*/
public static synchronized String getNodeValue(String jsonContent, String jsonPath) throws Exception {
String[] nodes = jsonPath.split("\\.");
JSONObject obj = new JSONObject(jsonContent);
for (int i = 1; i < nodes.length; i++) {
if (obj != null) {
obj = getObj(obj, nodes[i]);
}
if ((i + 1) == nodes.length) {
try{
return obj.getString(nodes[i]);
}catch(Exception e){
return "JSONException:"+e.getMessage()+",NodeString:"+obj.toString();
}
}
}
return null;
}
public static void main(String[] args) throws Exception {
//构造json字符串
String jsonContent = "{\"projectName\":\"JSON\",\"projectInfo\":{\"author\":\"test\",\"version\":1.0}}";
String val = JsonPaser.getNodeValue(jsonContent, "JSON.projectInfo.author");
System.out.println(val);//执行结果:test
}
}
如上代码中json字符串的树结构如下:
获取author的json路径就是:JSON.projectInfo.author,是不是方便了很多呢。
在实际使用时,这样的json路径很容易获得,例如通过chrome的json插件。