SORU
7 NİSAN 2010, ÇARŞAMBA


Android: Nasıl HttpClient bir istek durumu kodu almak

Bir dosya indirmek istiyorum ve yanıt durum kodu (yani HTTP /1.1 200 OK) kontrol etmeniz gerekir. Bu benim kod kesti

HttpGet httpRequest = new HttpGet(myUri);
HttpEntity httpEntity = null;
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response = httpclient.execute(httpRequest);
...

Nasıl durumu kodu yanıt alabilirim?

CEVAP
7 NİSAN 2010, ÇARŞAMBA


Bu int değerini döndürür:

response.getStatusLine().getStatusCode()

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • arnejann

    arnejann

    3 Kasım 2007
  • NYCarspotter

    NYCarspotter

    26 EYLÜL 2011
  • Richard Laxa

    Richard Laxa

    30 AĞUSTOS 2012