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
CSC307 Lecture 03
javiergs
PRO
1
490
AgentCoreとHuman in the Loop
har1101
5
220
今から始めるClaude Code超入門
448jp
7
8.4k
AIと一緒にレガシーに向き合ってみた
nyafunta9858
0
170
LLM Observabilityによる 対話型音声AIアプリケーションの安定運用
gekko0114
2
420
Data-Centric Kaggle
isax1015
2
760
例外処理とどう使い分ける?Result型を使ったエラー設計 #burikaigi
kajitack
16
6k
AIフル活用時代だからこそ学んでおきたい働き方の心得
shinoyu
0
130
15年続くIoTサービスのSREエンジニアが挑む分散トレーシング導入
melonps
2
170
AI Agent の開発と運用を支える Durable Execution #AgentsInProd
izumin5210
7
2.3k
CSC307 Lecture 07
javiergs
PRO
0
550
CSC307 Lecture 06
javiergs
PRO
0
680
Featured
See All Featured
Design in an AI World
tapps
0
140
The Limits of Empathy - UXLibs8
cassininazir
1
210
Docker and Python
trallard
47
3.7k
Information Architects: The Missing Link in Design Systems
soysaucechin
0
770
Crafting Experiences
bethany
1
46
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
61
52k
What Being in a Rock Band Can Teach Us About Real World SEO
427marketing
0
170
Public Speaking Without Barfing On Your Shoes - THAT 2023
reverentgeek
1
300
Visual Storytelling: How to be a Superhuman Communicator
reverentgeek
2
430
Taking LLMs out of the black box: A practical guide to human-in-the-loop distillation
inesmontani
PRO
3
2k
SEO Brein meetup: CTRL+C is not how to scale international SEO
lindahogenes
0
2.3k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
231
22k
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