android cookie

做了一个android网络应用,要求用自己实现的webview去访问web网站,并且在远程登录成功之后把cookie写入到手机,保留用作以后的自动登录。找了好多资料。发觉读取cookies倒还用的很普遍,可是通过程序写cookie却没有太多资料。

先来看一下如何读取cookie吧:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 try
         {
           DefaultHttpClient httpclient = new DefaultHttpClient();
           HttpGet httpget = new HttpGet("http://www.hlovey.com");
           HttpResponse response = httpclient.execute(httpget);
           HttpEntity entity = response.getEntity();
           List<Cookie> cookies = httpclient.getCookieStore().getCookies();
           if (entity != null) {
               entity.consumeContent();
           }
 
           if (cookies.isEmpty()) {
             Log.i(TAG, "NONE");
          } else {
              for (int i = 0; i < cookies.size(); i++) {             
                Log.i(TAG,"- domain " + cookies.get(i).getDomain());
                Log.i(TAG,"- path " + cookies.get(i).getPath());
                Log.i(TAG,"- value " + cookies.get(i).getValue());
 Log.i(TAG,"- name " + cookies.get(i).getName());
                Log.i(TAG,"- port " + cookies.get(i).getPorts());
                Log.i(TAG,"- comment " + cookies.get(i).getComment());
                Log.i(TAG,"- commenturl" + cookies.get(i).getCommentURL());
                Log.i(TAG,"- all " + cookies.get(i).toString());
              }
          }
           httpclient.getConnectionManager().shutdown();
 
         }catch(Exception e){
           //Todo
         }finally{
         //Todo         
         }

通过分析com.android.browser的源码,发现android默认的browser增加cookie是在数据库中增加记录,和window 不同,win是采用一个txt文本文件的形式来存储cookie。而android是将cookie存储在数据库中。具体的介绍在《android cookie存储位置》一文中有介绍。我们都知道,android每个应用程序的存储空间都是独立的。不管使用preference还是database存储,都会在每个 /data/data/package name/下面进行存储(preference存储在/data/data/package name/shared_prefs/xxxx.xml)。前面也说到cookie是存在数据库中,那么如果采用非浏览器访问网络需要保留cookie的话我们就应该在database中建立cookies表,并且存入相应的cookies数据。仿照默认broswer的代码:

1
2
3
4
5
6
7
8
9
 /**声明一些数据库操作的常量*/
   private static SQLiteDatabase mDatabase = null;
   private static final String DATABASE_FILE = "webview.db";
   private static final String COOKIES_NAME_COL = "name";
   private static final String COOKIES_VALUE_COL = "value";
   private static final String COOKIES_DOMAIN_COL = "domain";
   private static final String COOKIES_PATH_COL = "path";
   private static final String COOKIES_EXPIRES_COL = "expires";
   private static final String COOKIES_SECURE_COL = "secure";
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 mDatabase = LoginApiActivity.this.openOrCreateDatabase(DATABASE_FILE, 0, null);
 //创建cookie数据库
     if (mDatabase != null) {
       // cookies
       mDatabase.execSQL("CREATE TABLE IF NOT EXISTS cookies "
               + " (_id INTEGER PRIMARY KEY, "
               + COOKIES_NAME_COL + " TEXT, " + COOKIES_VALUE_COL
               + " TEXT, " + COOKIES_DOMAIN_COL + " TEXT, "
               + COOKIES_PATH_COL + " TEXT, " + COOKIES_EXPIRES_COL
               + " INTEGER, " + COOKIES_SECURE_COL + " INTEGER" + ");");
       mDatabase.execSQL("CREATE INDEX IF NOT EXISTS cookiesIndex ON "
               + "cookies" + " (path)");
     }
   }
 
 /*写cookie*/
   public void addCookie(Cookie cookie) {
     if (cookie.getDomain() == null || cookie.getPath() == null || cookie.getName() == null
             || mDatabase == null) {
         return;
     }
     String mCookieLock = "asd";
     synchronized (mCookieLock) {
         ContentValues cookieVal = new ContentValues();
         cookieVal.put(COOKIES_DOMAIN_COL, cookie.getDomain());
         cookieVal.put(COOKIES_PATH_COL, cookie.getPath());
         cookieVal.put(COOKIES_NAME_COL, cookie.getName());
         cookieVal.put(COOKIES_VALUE_COL, cookie.getValue());
 
         mDatabase.insert("cookies", null, cookieVal);
 
     }
 }

这是自己的一些心得,如果错误,请指正赐教!^_^





原文链接:http://www.hlovey.cn/2009/09/28/android-read-and-write-cookie.html


转载声明。下文出自:http://whao189.iteye.com/blog/1121865

前些天因为项目需要写了一个通过网络连接去服务端拿数据的方法,但是需要让程序添加上cookie,因为之前对cookie 没有怎么研究过(包括做web 那会也没有用过或者说很少用),所以

一时用起来不太会用。。结果百度google 了一把 发现要用cookieManager这个类,然后对这个类进行操作就行了!

  1. String getCookie(Context context){  
  2. CookieManager cookieManager = CookieManager.getInstance();  
  3. String        cookie = cookieManager.getCookie("cookie");  
  4. if(cookie != null){  
  5.     return cookie;  
  6. }else{  
  7. cookie= “XXX”;  
  8. cookieManager.setCookie("cookie", cookie);  
  9. return cookie;  
  10. }  
  11. }  


可以看到 我们只要设置在这里面然后再使用的时候我们在自己的httpconnection中添加就行了
  1. URL  url = new URL(urlPath);  
  2. HttpURLConnection httpUrlConn = (HttpURLConnection) url.openConnection();  
  3. httpUrlConn.setRequestProperty("cookie", getCookie(context));  


这样做 貌似是正确的。。当时我也是这么理解的。。但是很不幸的 是 。。。报错了。。

提示createInstance() must be instance called before getinstance()

很明显 我们必须要首先产生这个实例。。。结果查了一下API 需要在 getInstance()之前
  1. CookieSyncManager.createInstance(context);  


这样之后就不会出错了。。createInstance 之后保证了我们的。。webkit在使用CookieManager的时候 使用的是同一个CookieManager并保证了 线程同步。。。。

这一点我们可以参看CookieSyncManager.createInstance(context);的源码。。。。。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值