“Cómo usar la tarea Asynx para hacer API Connection Java” Código de respuesta

Cómo usar la tarea Asynx para hacer API Connection Java

class JSONAsyncTask extends AsyncTask<String, Void, Boolean> {


@Override
protected void onPreExecute() {
    super.onPreExecute();

}

@Override
protected Boolean doInBackground(String... urls) {
    try {

        //------------------>>
        HttpGet httppost = new HttpGet("YOU URLS TO JSON");
        HttpClient httpclient = new DefaultHttpClient();
        HttpResponse response = httpclient.execute(httppost);

        // StatusLine stat = response.getStatusLine();
        int status = response.getStatusLine().getStatusCode();

        if (status == 200) {
            HttpEntity entity = response.getEntity();
            String data = EntityUtils.toString(entity);


            JSONObject jsono = new JSONObject(data);

            return true;
        }


    } catch (IOException e) {
        e.printStackTrace();
    } catch (JSONException e) {

        e.printStackTrace();
    }
    return false;
}

protected void onPostExecute(Boolean result) {

}
Energetic Eel

Cómo usar AsyncTask para hacer una conexión API

public class SomeOtherClass {   //Some url endpoint that you may have   String myUrl = "http://myApi.com/get_some_data";   //String to place our result in   String result;   //Instantiate new instance of our class   HttpGetRequest getRequest = new HttpGetRequest();   //Perform the doInBackground method, passing in our url   result = getRequest.execute(myUrl).get();}
Energetic Eel

Respuestas similares a “Cómo usar la tarea Asynx para hacer API Connection Java”

Preguntas similares a “Cómo usar la tarea Asynx para hacer API Connection Java”

Más respuestas relacionadas con “Cómo usar la tarea Asynx para hacer API Connection Java” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código