android

[android] JSON Object 값 쉽게 받아오기

포카리s 2015. 5. 28. 16:40
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

public static String getStr(JSONObject jo, String key) {

String s = null;

try {

s = jo.getString(key);

} catch (Exception e) {

e.printStackTrace();

}

return s;

}