FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AndroidTutorialForBeginners/JSONObject.java at master · Progzizo/AndroidTutorialForBeginners · GitHub
Progzizo
/
AndroidTutorialForBeginners
Public
forked from
hussien89aa/AndroidTutorialForBeginners
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
AndroidTutorialForBeginners
/
JSONObject.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
50 lines (44 loc) · 1.21 KB
Breadcrumbs
AndroidTutorialForBeginners
/
JSONObject.java
Copy path
File metadata and controls
50 lines (44 loc) · 1.21 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
){}
Back
|
FazBrowse Home
|
New Git URL