Saya ingin mengunduh file dan perlu memeriksa kode status tanggapan (mis HTTP /1.1 200 OK
.). Ini adalah potongan kode saya:
HttpGet httpRequest = new HttpGet(myUri);
HttpEntity httpEntity = null;
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response = httpclient.execute(httpRequest);
...
Bagaimana cara mendapatkan kode status tanggapan?