我要做的事情主要就是
loop( 读图 -> 把路径存成JSON Object )
-> 把Objects 放到 JSON Array
但try里面那行一直出现 unhandled exception org.json.jsonexception
请问我该怎么做,漏掉了什么吗?
谢谢
JSONArray JArray=new JSONArray();
JSONObject JOject =new JSONObject();
for (int img_count = 0 ; img_count<image_count ;img_count++) {
img_adress[img_count] = way.get(img_count);
try {
JOject.put("PATH", img_adress[img_count]);
}catch (IOException e){
Log.e("Path","Failed",e);
}
JArray.put(JOject);
}