如何永久保存Android webview中的cookie?

时间:2011-12-05 18:38:27

标签: java android cookies webview cookiestore

使用下面的代码,我可以保存cookie,但是一旦我关闭应用程序,cookie就会消失。

这是如何引起的?如何解决?

package com.jkjljkj

import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.webkit.CookieSyncManager;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.Toast;

public class Activity extends Activity {

    /** Called when the activity is first created. */

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        CookieSyncManager.createInstance(getBaseContext());

        // Let's display the progress in the activity title bar, like the
        // browser app does.


        getWindow().requestFeature(Window.FEATURE_PROGRESS);

        WebView webview = new WebView(this);
        setContentView(webview);


        webview.getSettings().setJavaScriptEnabled(true);

        final Activity activity = this;
        webview.setWebChromeClient(new WebChromeClient() {
        public void onProgressChanged(WebView view, int progress) {
             // Activities and WebViews measure progress with different scales.
             // The progress meter will automatically disappear when we reach 100%
             activity.setProgress(progress * 1000);
        }
      });

      webview.setWebViewClient(new WebViewClient() {

         public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
              //Users will be notified in case there's an error (i.e. no internet connection)
              Toast.makeText(activity, "Oh no! " + description, Toast.LENGTH_SHORT).show();
         }
      });

      CookieSyncManager.getInstance().startSync();
      CookieSyncManager.getInstance().sync();

     //This will load the webpage that we want to see
      webview.loadUrl("http://");

   }
}

3 个答案:

答案 0 :(得分:38)

你必须告诉CookieSyncManager在加载了相关页面之后同步。在示例代码中,onCreate方法在WebView尝试加载页面之前完全执行,因此同步过程(异步发生)可能会在页面加载之前完成。

相反,告诉CookieSyncManager在WebViewClient中同步onPageFinished。那应该能得到你想要的东西。

CookieSyncManager Documentation对于如何正确执行此操作是一个很好的阅读。

以下是设置WebViewClient实现的方法:

webview.setWebViewClient(new WebViewClient() {
    public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
        //Users will be notified in case there's an error (i.e. no internet connection)
        Toast.makeText(activity, "Oh no! " + description, Toast.LENGTH_SHORT).show();
    }

    public void onPageFinished(WebView view, String url) {
        CookieSyncManager.getInstance().sync();
    }
);

您无需告知CookieSyncManager在其他位置同步。我没有测试过这个,所以请告诉我它是否有用。

答案 1 :(得分:4)

.sync()是强制执行imediate同步,并且必须在页面加载后调用它导致它与缓存同步RAM,因此cookie在调用之前必须处于ram状态。

如果您使用此方案,系统每5分钟自动同步一次

onCreate: 
CookieSyncManager.createInstance(context)

onResume:
CookieSyncManager.getInstance().startSync()

onPause:
CookieSyncManager.getInstance().stopSync()

我认为你没等等5分钟,所以系统保存cookie。

答案 2 :(得分:1)

对于那些面临flush()课程问题的人来说,即使在关闭应用后,Cookie仍然存在,他们应该尝试CookieManager CookieSyncManager的{​​{1}}功能。

请注意我没有尝试过这个,所以如果有效的话请告诉我。

根据android文档

  

void flush()

     

确保当前可通过getCookie API访问的所有Cookie都写入持久存储。此调用将阻止调用者,直到调用完成并可执行I / O.

同样在{{1}} documnentation中写道:

  

此类在API级别21中已弃用。   现在,WebView会根据需要自动同步Cookie。您不再需要创建或使用CookieSyncManager。要手动强制同步,您可以使用CookieManager方法flush(),它是sync()的同步替换。 CookieSyncManger link