Android: Http response cookie store
问题 I cant find any resource to understand how cookies are set by the Http response in Android. I am hitting a URL and reading the response like so: HttpGet httpGet = new HttpGet(url); HttpResponse response = client.execute(httpGet); StatusLine statusLine = response.getStatusLine(); int statusCode = statusLine.getStatusCode(); if (statusCode == 200) { HttpEntity entity = response.getEntity(); String entityStr = EntityUtils.toString(entity); } I am told that Http response will set a cookie that