forked from hussien89aa/AndroidTutorialForBeginners
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JSONObject.java
50 lines (44 loc) · 1.21 KB
/
JSONObject.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* this will be our strJsonstring
{
"info":
{
"name":"Hussein",
"age":27
},
"jobs":[
{
"id":1,
"title":"Developer",
"desc":"Develop apps for user",
},
{
"id":2,
"title":"Tester",
"desc":"test apps",
}
]
}
*/
String JsonFromURL="{" +
"'info':{'name':'hussein','age':27 }," +
"'jobs':" +
"[" +
"{'id':1, 'title':'developer','desc':'nyc'}," +
"{'id':2, 'title':'developer','desc':'nyc'}," +
"{'id':3, 'title':'developer','desc':'nyc'}" +
"]" +
"}";
try {
JSONObject json= new JSONObject(JsonFromURL);
JSONObject info=json.getJSONObject("info");
String name=info.getString("name");
int age=info.getInt("age");
JSONArray jobs=json.getJSONArray("jobs");
for ( int i=0; i<jobs.length();i++){
JSONObject Jobs= jobs.getJSONObject(i) ;
String title=Jobs.getString("title");
String desc=Jobs.getString("desc");
int id=Jobs.getInt("id");
}
}
catch (Exception ex){}