jsonObject.has()是干嘛的?
String jsonStr=new String(data);
try {
JSONObject jsonObject=new JSONObject(jsonStr);
if (jsonObject.has("fileUri")){
}
} catch (JSONException e) {
e.printStackTrace();
}