判断json对象时JSONArray还是JSONObject

判断json对象时JSONArray还是JSONObject

使用的fastjson

Object object = js.get("guid"); if (object instanceof JSONArray) { System.out.println("JSONArray");}else{ System.out.println("JSONObject");}

 

相关文章