参考网址:https://www.cnblogs.com/yelanggu/p/10870285.html
https://www.jianshu.com/p/c9a9c4e1756d
public void setCookie(Context context,String url) {
String StringCookie = "key=" + value + ";path=/"
CookieManager cookieManager = CookieManager.getInstance();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
cookieManager.removeSessionCookies(null);
cookieManager.flush();
} else {
cookieManager.removeSessionCookie();
CookieSyncManager.getInstance().sync();
}
cookieManager.setAcceptCookie(true);
cookieManager.setCookie(url, StringCookie);
}