嵌入式JSON对象和android中的JSON数组
{
"ocrNumber": "0123456",
"userName": "dddd",
"photo": [{
"lat": "13.1234",
"long": "7.1234",
"imagepath": "sd / image / demo.jpg"
}]
}
如果错误
,请忽略语法答案 0 :(得分:0)
在this发布json,你会得到zip模型。你可以轻松地将它们添加到你的应用中
答案 1 :(得分:-1)
// Make The Json Arrya in Json Object Programeticall.
// JSONObject person1 = new JSONObject();
// try {
// if(contacts_arraylist.get(j).getName()!=null) {
// person1.put("name", contacts_arraylist.get(j).getName());
// }
// else {
// person1.put("name","");
// }
//
// if(contacts_arraylist.get(j).getEmails().size()>0)
// {
// person1.put("email", contacts_arraylist.get(j).getEmails().get(0).address);
// }
// else {
// person1.put("email", "");
// }
//
// if(contacts_arraylist.get(j).getNumbers().size()>0)
// {
// person1.put("mobile_number", contacts_arraylist.get(j).getNumbers().get(0).number);
// }
// else {
// person1.put("mobile_number", "");
// }
//
// personarray.put(person1);
// } catch (JSONException e) {
// e.printStackTrace();
// }
// System.out.println("jsonString:---- " + personarray.toString());