savinki 0 Light Poster

How can we set and get cookies in struts2.
I tried with ;

Cookie a = new Cookie("name","value"); - but this throws a null pointer exception.
because of this exception I used CookieInterceptor:
CookieInterceptor LoginCookie = new CookieInterceptor();
LoginCookie.setCookiesName("type");
LoginCookie.setCookiesValue("value");
but how can I get the cookie values?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.