Android webview Lesen von cookies

Ich habe den folgenden code, um eine Webseite in einer webview:

WebView myWebView = (WebView) findViewById(R.id.webView1);
myWebView.loadUrl("http://the.url.com");
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);

Nun will ich Lesen cookie von der webview. Ist das möglich?

InformationsquelleAutor Enve | 2013-07-15
Schreibe einen Kommentar