I\'m trying to get cookie in servlet using
Cookie[] cookie = request.getCookies();
but cookie is always null.
cookie
null
firstly ,you should create a cookie,and then add to response
Cookie cookie = new Cookie(name,value); response.addCookie(cookie);