반응형
WebView로 cookie 데이터 저장
1 2 3 4 5 6 7 8 9 10 11 12 | <code> import android.webkit.CookieManager; CookieManager.getInstance().removeAllCookies( null ); CookieManager.getInstance().setCookie( "http://192.168.18.13:808" , "name" + "=" + name); CookieManager.getInstance().setCookie( "http://192.168.18.13:808" , "action" + "=" + action); CookieManager.getInstance().setAcceptThirdPartyCookies(webView, true ); webView.loadUrl( "http://192.168.18.13:808/" + path ); </code> |
반응형
'Android' 카테고리의 다른 글
SharedPreferences 사용법 (2) | 2021.11.29 |
---|---|
LinearLayout (6) | 2021.11.29 |
[error] java.net.ConnectException: Failed to connect to /192.168.18.13:44354 (246) | 2021.08.06 |
[error] Uncaught TypeError: Cannot read property 'setItem' of null", source (414) | 2021.08.06 |
postDelayed (2) | 2021.08.04 |
댓글