關於android如何對cookie的讀取!

來源:互聯網
上載者:User

關於android如何對cookie的讀取!

今天做項目時需要用到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));
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.