Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Android Programming 5
Search
Giovanni De Francesco
February 02, 2013
Programming
1
150
Android Programming 5
introductionon how android deal with JSON
Giovanni De Francesco
February 02, 2013
Tweet
Share
More Decks by Giovanni De Francesco
See All by Giovanni De Francesco
JSON explained
jibbo
2
220
Android Programming 4
jibbo
1
140
Android Overview
jibbo
1
170
Android Programming 3
jibbo
0
130
android programming 1
jibbo
0
220
android programming 2
jibbo
0
150
Other Decks in Programming
See All in Programming
開発者から情シスまで - 多様なユーザー層に届けるAPI提供戦略 / Postman API Night Okinawa 2026 Winter
tasshi
0
200
責任感のあるCloudWatchアラームを設計しよう
akihisaikeda
3
160
CSC307 Lecture 05
javiergs
PRO
0
500
AI Agent の開発と運用を支える Durable Execution #AgentsInProd
izumin5210
7
2.3k
MDN Web Docs に日本語翻訳でコントリビュート
ohmori_yusuke
0
640
CSC307 Lecture 09
javiergs
PRO
1
830
360° Signals in Angular: Signal Forms with SignalStore & Resources @ngLondon 01/2026
manfredsteyer
PRO
0
120
OSSとなったswift-buildで Xcodeのビルドを差し替えられるため 自分でXcodeを直せる時代になっている ダイアモンド問題編
yimajo
3
610
Grafana:建立系統全知視角的捷徑
blueswen
0
330
ぼくの開発環境2026
yuzneri
0
140
CSC307 Lecture 01
javiergs
PRO
0
690
humanlayerのブログから学ぶ、良いCLAUDE.mdの書き方
tsukamoto1783
0
190
Featured
See All Featured
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
Darren the Foodie - Storyboard
khoart
PRO
2
2.3k
Into the Great Unknown - MozCon
thekraken
40
2.2k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
130k
The Director’s Chair: Orchestrating AI for Truly Effective Learning
tmiket
1
96
Believing is Seeing
oripsolob
1
53
Self-Hosted WebAssembly Runtime for Runtime-Neutral Checkpoint/Restore in Edge–Cloud Continuum
chikuwait
0
320
Mozcon NYC 2025: Stop Losing SEO Traffic
samtorres
0
140
Why Our Code Smells
bkeepers
PRO
340
58k
State of Search Keynote: SEO is Dead Long Live SEO
ryanjones
0
110
Unlocking the hidden potential of vector embeddings in international SEO
frankvandijk
0
170
Rails Girls Zürich Keynote
gr2m
96
14k
Transcript
Android Programming JSON and HttpPost
JSONObject JSONObject json = new JSONObject(); json.put(“name”,”value”);
JSONObject json2 = new JSONObject(jsonstring); json.getString(“name”); //or getBoolean etc… Android Programming
HttpPost HttpPost post = new HttpPost(”url"); ArrayList<NameValuePair>parameters = new ArrayList<NameValuePair>(2);
parameters.add(new BasicNameValuePair(”name”,”value”); post.setEntity(new UrlEncodedFormEntity(parameters)); Android Programming
The app of the day! Android Programming http://jibbo.altervista.org/jsonExample.php