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
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
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
Smart Handoff/Pickup ガイド - Claude Code セッション管理
yukiigarashi
0
130
生成AIを使ったコードレビューで定性的に品質カバー
chiilog
1
260
Data-Centric Kaggle
isax1015
2
770
humanlayerのブログから学ぶ、良いCLAUDE.mdの書き方
tsukamoto1783
0
190
組織で育むオブザーバビリティ
ryota_hnk
0
170
今から始めるClaude Code超入門
448jp
8
8.6k
CSC307 Lecture 03
javiergs
PRO
1
490
プロダクトオーナーから見たSOC2 _SOC2ゆるミートアップ#2
kekekenta
0
200
例外処理とどう使い分ける?Result型を使ったエラー設計 #burikaigi
kajitack
16
6k
AIによるイベントストーミング図からのコード生成 / AI-powered code generation from Event Storming diagrams
nrslib
2
1.9k
AI Agent の開発と運用を支える Durable Execution #AgentsInProd
izumin5210
7
2.3k
AtCoder Conference 2025
shindannin
0
1.1k
Featured
See All Featured
Neural Spatial Audio Processing for Sound Field Analysis and Control
skoyamalab
0
160
30 Presentation Tips
portentint
PRO
1
210
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.6k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
47
7.9k
A Guide to Academic Writing Using Generative AI - A Workshop
ks91
PRO
0
200
Abbi's Birthday
coloredviolet
1
4.7k
A better future with KSS
kneath
240
18k
Designing for humans not robots
tammielis
254
26k
世界の人気アプリ100個を分析して見えたペイウォール設計の心得
akihiro_kokubo
PRO
66
36k
A brief & incomplete history of UX Design for the World Wide Web: 1989–2019
jct
1
300
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.4k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
133
19k
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