android json 데이터 가져오기
public static String getContent(String url) {
StringBuilder sb = new StringBuilder();
try {
HttpClient client = new DefaultHttpClient();
HttpParams httpParams = client.getParams();
HttpConnectionParams.setConnectionTimeout(httpParams, 3 * 1000);
HttpConnectionParams.setSoTimeout(httpParams, 5000);
HttpResponse response = client.execute(new HttpGet(url));
HttpEntity entity = response.getEntity();
if (entity != null) {
BufferedReader reader = new BufferedReader(
new InputStreamReader(entity.getContent(), "UTF-8"),
8192);
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "
");
}
reader.close();
}
} catch (Exception e) {
e.printStackTrace();
}
return sb.toString();
}
json 데이터를 json 대상으로 변환하고 alues 가져오기
class LoadSubList extends AsyncTask<String, SubInfo, Integer> {
@Override
protected Integer doInBackground(String... params) {
try {
String jsonStr = NetUtil.getContent(path);
JSONArray array = new JSONArray(jsonStr);
for (int i = 0; i < array.length(); i++) {
JSONObject json = array.getJSONObject(i);
String logo = json.getString("logo");
String updatecycle = json.getString("updatecycle");
int isdelete = json.getInt("isdelete");
int pid = json.getInt("pid");
String categoryHtml = json.getString("categoryHtml");
String url = json.getString("url");
int id = json.getInt("id");
int issy = json.getInt("issy");
String pushtime = json.getString("pushtime");
String createtime = json.getString("createtime");
String categoryname = json.getString("categoryname");
int hasChild = json.getInt("hasChild");
String introduction = json.getString("introduction");
SubInfo subInfo = new SubInfo(logo, updatecycle, isdelete,
pid, categoryHtml, url, id, issy, pushtime,
createtime, categoryname, hasChild, introduction);
publishProgress(subInfo);
}
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(Integer result) {
super.onPostExecute(result);
}
@Override
protected void onProgressUpdate(SubInfo... values) {
super.onProgressUpdate(values);
syncAdapter(values);
}
}
public void syncAdapter(SubInfo[] values) {
for (SubInfo subInfo : values) {
adapterSubManager.add(subInfo);
adapterSubManager.notifyDataSetChanged();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
콘텐츠 SaaS | JSON 스키마 양식 빌더Bloomreach Content를 위한 JSON Form Builder 맞춤형 통합을 개발합니다. 최근 Bloomreach Content SaaS는 내장 앱 프레임워크를 사용하여 혁신적인 콘텐츠 유형 필드를 구축할...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.