Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 關於android如何對cookie的讀取!

關於android如何對cookie的讀取!

編輯:關於Android編程

今天做項目時需要用到cookie讀取,於是就乘機學習了下。

1.首先客戶端登錄成功後會得到一個cookie ,需要把這個cookie保存到本地,然後後面需要請求時加到head。

2.我用的是sharePreference保存key的。


/**
* 保存Cookie
*/
public static void savePreference(Context context,String key, String value) {
SharedPreferences preference = context.getSharedPreferences(COOKIE, Context.MODE_PRIVATE);
Editor editor = preference.edit();
editor.putString(key, value);
editor.commit();//
}

/**
* 得到Cookie
*/
public static String getPreference(Context context,String key) {
SharedPreferences preference = context.getSharedPreferences(COOKIE, Context.MODE_PRIVATE);
return preference.getString(key,"");
}

/**
* 判斷cookie是否存在
*/
public static boolean isCookId(Context context) {
SharedPreferences preference = context.getSharedPreferences(GjtcConstant.COOKID, Context.MODE_PRIVATE);
Log.d("cook", preference.getString(SID, ""));
if (preference.getString(SID, "") != null
&& !preference.getString(SID, "").equals("")
&& !preference.getString(SID, "").equals("null")) {
return true;
} else {
return false;
}
}

3.獲得cookie並保存到數據庫

/**
* 獲取cookie 並保存
*/

HttpGet request = new HttpGet(url);

esponse = httpClient.execute(request);

if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
//獲得cookie
getCookie(httpClient);
}


private void getCookie(HttpClient httpClient) {
List cookies = ((AbstractHttpClient) httpClient).getCookieStore().getCookies();
StringBuffer sb = new StringBuffer();
for (int i = 0; i < cookies.size(); i++) {
Cookie cookie = cookies.get(i);
String cookieName = cookie.getName();
String cookieValue = cookie.getValue();
if (!TextUtils.isEmpty(cookieName)
&& !TextUtils.isEmpty(cookieValue)) {
sb.append(cookieName + "=");
sb.append(cookieValue+";");
}
}
savePreference(mContext,SID, sb.toString());
}

4.請求時添加到head裡去

HttpGet request = new HttpGet(url);
if(GjtcUtils.isCookId(mContext))
{
request.addHeader("cookie", GjtcUtils.getPreference(mContext,GjtcConstant.SID));
}

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved