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
Zendeskのチケットを Amazon Bedrockで 解析した
ryokosuge
3
310
複雑なドメインに挑む.pdf
yukisakai1225
5
1.2k
Oracle Database Technology Night 92 Database Connection control FAN-AC
oracle4engineer
PRO
1
450
奥深くて厄介な「改行」と仲良くなる20分
oguemon
1
540
RDoc meets YARD
okuramasafumi
4
170
Performance for Conversion! 分散トレーシングでボトルネックを 特定せよ
inetand
0
860
Ruby Parser progress report 2025
yui_knk
1
450
はじめてのMaterial3 Expressive
ym223
2
740
Introducing ReActionView: A new ActionView-compatible ERB Engine @ Rails World 2025, Amsterdam
marcoroth
0
690
プロパティベーステストによるUIテスト: LLMによるプロパティ定義生成でエッジケースを捉える
tetta_pdnt
0
1.7k
MCPでVibe Working。そして、結局はContext Eng(略)/ Working with Vibe on MCP And Context Eng
rkaga
5
2.3k
AIを活用し、今後に備えるための技術知識 / Basic Knowledge to Utilize AI
kishida
22
5.8k
Featured
See All Featured
Context Engineering - Making Every Token Count
addyosmani
3
48
The Cult of Friendly URLs
andyhume
79
6.6k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
112
20k
How STYLIGHT went responsive
nonsquared
100
5.8k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
15k
Fireside Chat
paigeccino
39
3.6k
Thoughts on Productivity
jonyablonski
70
4.8k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.9k
We Have a Design System, Now What?
morganepeng
53
7.8k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Making the Leap to Tech Lead
cromwellryan
135
9.5k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
1.1k
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