2017-02-04 4 views
-1

Thi는 내 JSON 파서 클래스이며 DefaultHttpClient를 사용합니다. 나는이 안드로이드 프로젝트 개발에 익숙하지 않다. DefaultHttpClient는 더 이상 사용되지 않으며 클래스에서의 사용법은 strikethroughed이다. 이 비추천 클래스에 대한 대안으로 솔루션으로 다른 JSON 파서 클래스를 도와주세요.내 JSON 파서에서 사용되지 않는 클래스 DefaultHttpClient 다루기

import android.util.Log; 

    import org.apache.http.HttpEntity; 
    import org.apache.http.HttpResponse; 
    import org.apache.http.NameValuePair; 
    import org.apache.http.client.ClientProtocolException; 
    import org.apache.http.client.HttpClient; 
    import org.apache.http.client.entity.UrlEncodedFormEntity; 
    import org.apache.http.client.methods.HttpGet; 
    import org.apache.http.client.methods.HttpPost; 
    import org.apache.http.client.utils.URLEncodedUtils; 
    import org.apache.http.impl.client.DefaultHttpClient; 
    import org.json.JSONArray; 
    import org.json.JSONException; 
    import org.json.JSONObject; 

    import java.io.BufferedReader; 
    import java.io.IOException; 
    import java.io.InputStream; 
    import java.io.InputStreamReader; 
    import java.io.UnsupportedEncodingException; 
    import java.util.ArrayList; 

    public class JSONParser { 


static InputStream is = null; 
static JSONObject jObj = null; 
static JSONArray jArr = null; 
static String json = ""; 
static String error = ""; 

// constructor 
public JSONParser() { 

} 

// function get json from url 
// by making HTTP POST or GET mehtod 
public JSONObject makeHttpRequest(String url, String method, 
            ArrayList<NameValuePair> params) { 

    // Making HTTP request 
    try { 

     // check for request method 
     if(method.equals("POST")){ 
      // request method is POST 
      // defaultHttpClient 
      HttpClient httpClient = new DefaultHttpClient(); 
      HttpPost httpPost = new HttpPost(url); 
      httpPost.setEntity(new UrlEncodedFormEntity(params)); 
      try { 
       Log.e("API123", " " +convertStreamToString(httpPost.getEntity().getContent())); 
       Log.e("API123",httpPost.getURI().toString()); 
      } catch (Exception e) { 
       e.printStackTrace(); 
      } 

      HttpResponse httpResponse = httpClient.execute(httpPost); 
      Log.e("API123",""+httpResponse.getStatusLine().getStatusCode()); 
      error= String.valueOf(httpResponse.getStatusLine().getStatusCode()); 
      HttpEntity httpEntity = httpResponse.getEntity(); 
      is = httpEntity.getContent(); 

     }else if(method.equals("GET")){ 
      // request method is GET 
      DefaultHttpClient httpClient = new DefaultHttpClient(); 
      String paramString = URLEncodedUtils.format(params, "utf-8"); 
      url += "?" + paramString; 
      HttpGet httpGet = new HttpGet(url); 

      HttpResponse httpResponse = httpClient.execute(httpGet); 
      HttpEntity httpEntity = httpResponse.getEntity(); 
      is = httpEntity.getContent(); 
     } 

    } catch (UnsupportedEncodingException e) { 
     e.printStackTrace(); 
    } catch (ClientProtocolException e) { 
     e.printStackTrace(); 
    } catch (IOException e) { 
     e.printStackTrace(); 
    } 

    try { 
     BufferedReader reader = new BufferedReader(new InputStreamReader(
       is, "iso-8859-1"), 8); 
     StringBuilder sb = new StringBuilder(); 
     String line = null; 
     while ((line = reader.readLine()) != null) { 
      sb.append(line + "\n"); 
     } 
     is.close(); 
     json = sb.toString(); 
     Log.d("API123",json); 
    } catch (Exception e) { 
     Log.e("Buffer Error", "Error converting result " + e.toString()); 
    } 

    // try parse the string to a JSON object 
    try { 
     jObj = new JSONObject(json); 
     jObj.put("error_code",error); 
    } catch (JSONException e) { 
     Log.e("JSON Parser", "Error parsing data " + e.toString()); 
    } 

    // return JSON String 
    return jObj; 

} 

private String convertStreamToString(InputStream is) throws Exception { 
    BufferedReader reader = new BufferedReader(new InputStreamReader(is)); 
    StringBuilder sb = new StringBuilder(); 
    String line = null; 
    while ((line = reader.readLine()) != null) { 
     sb.append(line); 
    } 
    is.close(); 
    return sb.toString(); 
} 
} 

저는이 Android 애플리케이션 개발에 초보자입니다.

+2

DefaultHttpClient는 JSON 파서가 아닙니다. 그것의 HTTP 라이브러리. 다른 HTTP 라이브러리가 필요한 경우 UrlConnection은 Volley 및 RetroFit과 같은 기본 제공 타사의 UrlConnection입니다. JSON 파서가 필요하면 JSONObject가 내장되어 있고 Jackson과 GSON은 널리 사용되는 타사입니다. –

+0

귀하의 질문에 최대한 빨리 요청을하지 마십시오. 자원 봉사자를 서둘러 보내려하지 않아도됩니다. – halfer

+0

유감스럽게 생각합니다. JSON 구문 분석기로 DefaultHttpclient를 의미하지 않습니다. json 파서 클래스를 연결했습니다. –

답변

0

Retrofit 또는 Volley 안드로이드 용 네트워크 라이브러리를 사용하는 것이 좋습니다. 링크를 따라 구성하거나 사용하는 방법을 배우십시오.