摘要: 获得sessionid的方法List<Cookie> cookies = ((AbstractHttpClient) httpClient) .getCookieStore().getCookies(); if (cookies.isEmpty()) { Log.i("Caller", "-------Cookie NONE---------"); } else { for (int i = 0; i < cookies.size(); i++) { // 保存cookie ... 阅读全文
posted @ 2013-03-28 09:39 似水流云 阅读(1401) 评论(0) 推荐(0)