Day: 16 January 2017

Read Cookies in Servlet In this example, we will show you simple program about how to read cookies in servlet. The example program has been tested with Google Chrome browser and output shared in the below post. Note: Before going to proceed with this example make sure that, you have already created cookies using servlet. […]
Create Cookies in Servlet In this simple example, we will show you how to create cookies in servlet. This particular example has been tested with Google Chrome browser environment. The example source code has been explained step by step in the below post. Servlet Code (MyCookieServlet.java) package com.dineshkrish.servlet; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import […]
Simple Login Application using Servlet This example will show step by step procedure to develop Simple Login Application using Servlet technology. In this tutorial, We will show you how to develop simple login application using Servlet, JSP, and JDBC. The example has been tested with MySQL and Apache Tomcat Server environment and output has been […]