Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android webview read cookies

I have the following code to display a webpage in a webview:

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

Now I want to read cookie of the webview. Is this possible?

like image 311
Enve Avatar asked Jul 15 '13 12:07

Enve


1 Answers

It was a quite late , but it might help someone

you can get the cookie value by this

public String getCookie(String siteName,String CookieName){     
    String CookieValue = null;

    CookieManager cookieManager = CookieManager.getInstance();
    String cookies = cookieManager.getCookie(siteName);   
    if(cookies != null){
        String[] temp=cookies.split(";");
        for (String ar1 : temp ){
            if(ar1.contains(CookieName)){
                String[] temp1=ar1.split("=");
                CookieValue = temp1[1];
            }
        }              
     }
     return CookieValue;    
}

Edit

Point to notice:

If you are loading URL like http://sitedomain.com (without www), the siteName with www will not work with this method.

like image 54
vimal1083 Avatar answered Nov 18 '22 12:11

vimal1083