您的位置:首页 > 理论基础 > 计算机网络

Android使用AsynchronousHttpClient

2015-11-09 10:07 495 查看
Asynchronous Http Client是android中非常好的异步请求工具 
除了异步之外还有很多封装比如json的处理,cookie的处理 

引用

Persistent Cookie Storage with PersistentCookieStore 

This library also includes a PersistentCookieStore which is an implementation of the Apache HttpClient CookieStore interface that automatically saves cookies to SharedPreferences storage on the Android device. 

This is extremely useful if you want to use cookies to manage authentication sessions, since the user will remain logged in even after closing and re-opening your app. 

First, create an instance of AsyncHttpClient: 

AsyncHttpClient myClient = new AsyncHttpClient(); 

Now set this client’s cookie store to be a new instance of PersistentCookieStore, constructed with an activity or application context (usually this will suffice): 

Java代码  


PersistentCookieStore myCookieStore = new PersistentCookieStore(this);  

myClient.setCookieStore(myCookieStore);  

Any cookies received from servers will now be stored in the persistent cookie store. 

To add your own cookies to the store, simply construct a new cookie and call addCookie: 

Java代码  


BasicClientCookie newCookie = new BasicClientCookie("cookiesare", "awesome");  

newCookie.setVersion(1);  

newCookie.setDomain("mydomain.com");  

newCookie.setPath("/");  

myCookieStore.addCookie(newCookie);  

See the PersistentCookieStore Javadoc for more information. 

开篇边有一句话描述“utomatically saves cookies to SharedPreferences storage ” 
自动保存cookie到SharedPreferences 中 

需要注意的一点是下面设置cookie的代码 

Java代码  


PersistentCookieStore myCookieStore = new PersistentCookieStore(this);  

myClient.setCookieStore(myCookieStore);  

必须在client发起请求之前执行,然后再去执行client的get或者post请求。做好设置之后,它在请求之后才会把返回http的head中获取cookie保存。 
否则是无法保存的。 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: