final String json = "[{\"id\":\"키즈베어\",\"tel\":\"010-1111-2222\"}," +
"{\"id\":\"김꽃드래\",\"tel\":\"010-3333-4444\"}," +
"{\"id\":\"민식이냐\",\"tel\":\"010-5555-6666\"}]" ;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btn = (Button)findViewById(R.id.btn);
result = (TextView)findViewById(R.id.result);
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
jsonParser();
}
});
}
private void jsonParser(){
String resultStr = "";
try {
//JSON String으로 부터 JSONArray 생성. [](대괄호)
JSONArray jArr = new JSONArray(json);
for (int i = 0; i < jArr.length(); i++) {
//JSONArray에서 i번째 해당하는 JSONObject를 추출.
JSONObject jObj = jArr.getJSONObject(i);
//각 이름("id"/"tel")에 해당하는 값을 추출.
resultStr += String.format("아이디 : %s 전화번호 : %s\n",
jObj.getString("id"), jObj.getString("tel"));
}
result.setText(resultStr);
} catch (JSONException e) {
Toast.makeText(JSONActivity.this, e.getMessage(), Toast.LENGTH_SHORT).show();
}
}
}
"{\"id\":\"김꽃드래\",\"tel\":\"010-3333-4444\"}," +
"{\"id\":\"민식이냐\",\"tel\":\"010-5555-6666\"}]" ;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btn = (Button)findViewById(R.id.btn);
result = (TextView)findViewById(R.id.result);
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
jsonParser();
}
});
}
private void jsonParser(){
String resultStr = "";
try {
//JSON String으로 부터 JSONArray 생성. [](대괄호)
JSONArray jArr = new JSONArray(json);
for (int i = 0; i < jArr.length(); i++) {
//JSONArray에서 i번째 해당하는 JSONObject를 추출.
JSONObject jObj = jArr.getJSONObject(i);
//각 이름("id"/"tel")에 해당하는 값을 추출.
resultStr += String.format("아이디 : %s 전화번호 : %s\n",
jObj.getString("id"), jObj.getString("tel"));
}
result.setText(resultStr);
} catch (JSONException e) {
Toast.makeText(JSONActivity.this, e.getMessage(), Toast.LENGTH_SHORT).show();
}
}
}
[출처] [안드로이드 개발 강좌] JSON 파서|작성자 키즈베어
댓글 2개
12년 전
java엔 jackson 쓰면편한데
takumi22
12년 전
감사합니다
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 161 | ||
| 8229 | 9년 전 | 133 | ||
| 8228 |
커네드커네드
|
9년 전 | 182 | |
| 8227 | 9년 전 | 226 | ||
| 8226 | 9년 전 | 241 | ||
| 8225 | 9년 전 | 220 | ||
| 8224 | 9년 전 | 227 | ||
| 8223 | 9년 전 | 205 | ||
| 8222 |
|
9년 전 | 263 | |
| 8221 | 9년 전 | 170 | ||
| 8220 | 9년 전 | 207 | ||
| 8219 | 9년 전 | 174 | ||
| 8218 | 9년 전 | 224 | ||
| 8217 |
star3840
|
9년 전 | 192 | |
| 8216 | 9년 전 | 257 | ||
| 8215 | 9년 전 | 203 | ||
| 8214 | 9년 전 | 317 | ||
| 8213 | 9년 전 | 270 | ||
| 8212 | 9년 전 | 177 | ||
| 8211 | 9년 전 | 353 | ||
| 8210 | 9년 전 | 351 | ||
| 8209 | 9년 전 | 428 | ||
| 8208 | 9년 전 | 314 | ||
| 8207 | 9년 전 | 327 | ||
| 8206 |
|
9년 전 | 277 | |
| 8205 | 9년 전 | 249 | ||
| 8204 | 9년 전 | 234 | ||
| 8203 | 9년 전 | 305 | ||
| 8202 | 9년 전 | 227 | ||
| 8201 | 9년 전 | 262 | ||
| 8200 | 9년 전 | 273 | ||
| 8199 | 9년 전 | 294 | ||
| 8198 | 9년 전 | 260 | ||
| 8197 | 9년 전 | 241 | ||
| 8196 | 9년 전 | 661 | ||
| 8195 | 9년 전 | 253 | ||
| 8194 | 9년 전 | 365 | ||
| 8193 | 9년 전 | 273 | ||
| 8192 | 9년 전 | 289 | ||
| 8191 | 9년 전 | 242 | ||
| 8190 | 9년 전 | 225 | ||
| 8189 | 9년 전 | 291 | ||
| 8188 | 9년 전 | 221 | ||
| 8187 | 9년 전 | 231 | ||
| 8186 | 9년 전 | 229 | ||
| 8185 | 9년 전 | 397 | ||
| 8184 | 9년 전 | 185 | ||
| 8183 | 9년 전 | 399 | ||
| 8182 | 9년 전 | 262 | ||
| 8181 | 9년 전 | 226 | ||
| 8180 | 9년 전 | 790 | ||
| 8179 | 9년 전 | 566 | ||
| 8178 | 9년 전 | 429 | ||
| 8177 |
kiplayer
|
9년 전 | 423 | |
| 8176 | 9년 전 | 457 | ||
| 8175 | 9년 전 | 346 | ||
| 8174 | 9년 전 | 335 | ||
| 8173 | 9년 전 | 428 | ||
| 8172 | 9년 전 | 305 | ||
| 8171 | 9년 전 | 268 | ||
| 8170 | 9년 전 | 385 | ||
| 8169 |
커네드커네드
|
9년 전 | 339 | |
| 8168 | 9년 전 | 420 | ||
| 8167 | 9년 전 | 406 | ||
| 8166 | 9년 전 | 313 | ||
| 8165 | 9년 전 | 257 | ||
| 8164 | 9년 전 | 391 | ||
| 8163 | 9년 전 | 388 | ||
| 8162 | 9년 전 | 380 | ||
| 8161 | 9년 전 | 397 | ||
| 8160 |
|
9년 전 | 611 | |
| 8159 | 9년 전 | 554 | ||
| 8158 | 9년 전 | 345 | ||
| 8157 | 9년 전 | 463 | ||
| 8156 | 9년 전 | 345 | ||
| 8155 | 9년 전 | 350 | ||
| 8154 |
00년생용띠
|
9년 전 | 679 | |
| 8153 | 9년 전 | 317 | ||
| 8152 |
|
9년 전 | 497 | |
| 8151 | 9년 전 | 494 | ||
| 8150 | 9년 전 | 601 | ||
| 8149 |
Jangfolk
|
9년 전 | 464 | |
| 8148 | 9년 전 | 280 | ||
| 8147 | 9년 전 | 463 | ||
| 8146 | 9년 전 | 548 | ||
| 8145 | 9년 전 | 499 | ||
| 8144 | 9년 전 | 471 | ||
| 8143 | 9년 전 | 299 | ||
| 8142 | 9년 전 | 511 | ||
| 8141 | 9년 전 | 458 | ||
| 8140 | 9년 전 | 1022 | ||
| 8139 | 9년 전 | 374 | ||
| 8138 |
전갈자리남자
|
9년 전 | 471 | |
| 8137 | 9년 전 | 511 | ||
| 8136 | 9년 전 | 842 | ||
| 8135 |
|
9년 전 | 879 | |
| 8134 |
PlayPixel
|
9년 전 | 619 | |
| 8133 |
|
9년 전 | 526 | |
| 8132 | 9년 전 | 564 | ||
| 8131 | 9년 전 | 921 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기