We use cookies to collect and analyze information on site performance and usage,
to provide social media features and to enhance and customize content and advertisements.
import javax.servlet.*;
import javax.servlet.http.*;
public class MyServlet extends HttpServlet {
public void doPost(HttpServletRequest req, HttpServletResponse res) {
res.addCookie(new Cookie("mycookie_name", "mycookie_value"));
}
public void doGet(HttpServletRequest req, HttpServletResponse res) {
doPost(req, res);
}
}