public void jsonparse() {
// String Result;
String Json =
"[{\"Product\":\"Mouse\", \"Maker\":\"Samsung\", \"Price\":23000},"
+
"{\"Product\":\"KeyBoard\", \"Maker\":\"LG\", \"Price\":12000},"
+
"{\"Product\":\"HDD\", \"Maker\":\"Western Digital\",
\"Price\":156000}]";
try {
String Result = "주문 목록\n";
JSONArray
ja = new JSONArray(Json);
for (int i = 0; i < ja.length(); i++)
{
JSONObject order = ja.getJSONObject(i);
Result += "제품명:" +
order.getString("Product") + ",제조사:"
+ order.getString("Maker") +
",가격"
+ order.getInt("Price") + "\n";
}
//
mResult.setText(Result);
} catch (JSONException e) {
//
Toast.makeText(v.getContext(), e.getMessage(), 0).show();
}
}
'Android_Programma' 카테고리의 다른 글
android 에 phone gap 설치하기 (펌) (0) | 2012.03.21 |
---|---|
안드로이드 가로로 돌아가는 기능 막기 (0) | 2012.03.21 |
퍼즐 슬라이딩할때 사용한 ontouchevent 사용하기. (0) | 2012.03.21 |
안드로이드 프로젝트 앱이름 프로젝트나 아이콘 바꾸기 (0) | 2012.03.21 |
shared preference 입출력 (안드로이드에서 공유 환경 변수 두기) (0) | 2012.03.21 |