Download as pdf or txt
Download as pdf or txt
You are on page 1of 10

Experiment No.

-6

Write a program in java to set cookie


information using Servlet.
A cookie is a small piece of information that is persisted between the
multiple client requests. A cookie has a name, a single value, and optional
attributes such as a comment, path and domain qualifiers, a maximum age,
and a version number.

By default, each request is considered as a new request. In cookies


technique, we add cookie with response from the servlet. So cookie is stored
in the cache of the browser. After that if request is sent by the user, cookie is
added with request by default. Thus, we recognize the user as the old user.

Cookie information example for storing the name of the user in the cookie
object and accessing it in another servlet.
Index.html:

<form action="servlet1" method="post">


Name:<input type="text" name="userName"/><br/>
<input type="submit" value="go"/>
</form>

FirstServlet.java
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class FirstServlet extends HttpServlet {

public void doPost(HttpServletRequest request, HttpServletResponse


response){
try{

response.setContentType("text/html");
PrintWriter out = response.getWriter();

String n=request.getParameter("userName");
out.print("Welcome "+n);

Cookie ck=new Cookie("uname",n);//creating cookie object


response.addCookie(ck);//adding cookie in the response

//creating submit button


out.print("<form action='servlet2'>");
out.print("<input type='submit' value='go'>");
out.print("</form>");

out.close();

}catch(Exception e){System.out.println(e);}
}
}
SecondServlet.java
import java.io.*;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class SecondServlet extends HttpServlet {

public void doPost(HttpServletRequest request, HttpServletResponse


response){
try{

response.setContentType("text/html");
PrintWriter out = response.getWriter();

Cookie ck[]=request.getCookies();
out.print("Hello "+ck[0].getValue());

out.close();

}catch(Exception e){System.out.println(e);}
}

Web.xml

<web-app>

<servlet>

<servlet-name>s1</servlet-name>

<servlet-class>FirstServlet</servlet-class>

</servlet>

<servlet-mapping>

<servlet-name>s1</servlet-name>
<url-pattern>/servlet1</url-pattern>

</servlet-mapping>

<servlet>

<servlet-name>s2</servlet-name>

<servlet-class>SecondServlet</servlet-class>

</servlet>

<servlet-mapping>

<servlet-name>s2</servlet-name>

<url-pattern>/servlet2</url-pattern>

</servlet-mapping>

</web-app>
Experiment No.-7

Write a program in java to insert data into a


table using JSP.
JSP(Java Server Page) is a server-side technology, used for developing
webpages that support dynamic content. It enables the separation of
dynamic and static content, thereby reducing development complexity.
Java code is inserted in HTML pages by employing special JSP tags most
of which start with <% and end with %>.

Code:
CREATE TABLE users

id int NOT NULL AUTO_INCREMENT,

first_name varchar(50),

last_name varchar(50),

city_name varchar(50),

email varchar(50),

PRIMARY KEY (id)

);

These files are used to insert data in MySQL:

● index.html:for getting the values from the user


● process.jsp:A JSP file that process the request
index.html

<!DOCTYPE html>

<html>

<body>

<form method="post" action="process.jsp">

First name:<br>

<input type="text" name="first_name">

<br>

Last name:<br>

<input type="text" name="last_name">

<br>

City name:<br>

<input type="text" name="city_name">

<br>

Email Id:<br>

<input type="email" name="email">

<br><br>

<input type="submit" value="submit">

</form>

</body>

</html>

process.jsp

<%@ page language="java" contentType="text/html;


charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>

<%@page import="java.sql.*,java.util.*"%>

<%
String first_name=request.getParameter("first_name");

String last_name=request.getParameter("last_name");

String city_name=request.getParameter("city_name");

String email=request.getParameter("email");

try

Class.forName("com.mysql.jdbc.Driver");

Connection conn =
DriverManager.getConnection("jdbc:mysql://localhost:3306/test"
, "root", "");

Statement st=conn.createStatement();

int i=st.executeUpdate("insert into


users(first_name,last_name,city_name,email)values('"+first_nam
e+"','"+last_name+"','"+city_name+"','"+email+"')");

out.println("Data is successfully inserted!");

catch(Exception e)

System.out.print(e);

e.printStackTrace();

%>
Experiment No.-8

Write a JSP program to implement form


validation.
JSP stands for Java Server Pages and is used for the purpose of developing
web based applications. A single JSP page consists of HTML tags for static
content and JSP tags to construct dynamic content. The JSP tags start with
‘<%’ and end with ‘%>’. We save our JSP file with the extension ‘.jsp’.

Validating a user means simply checking whether the user has entered
correct login details or not. The validation process in JSP is quite simple and
straightforward. This article will guide you to create a program to validate a
user using JSP.

Code:

index.jsp

<% @page contentType = "text/html" pageEncoding = "UTF-8" %>

<!DOCTYPE html>

<html>

<head>

<title> Tutorials Point </title>

<meta charset = "UTF-8">

<meta name = "viewport" content = "width = device-width, initial-scale =


1.0">

<style>

Input {

margin: 10px;
}

Body {

background-color:#2c74c7;

text-align:center;

</style>

</head>

<body>

<div>Welcome to Tutorials Point</div>

<form action = "login.jsp" method="POST">

<label> Enter your Username: </label>

<input type = "text" name = "uname">

<br>

<label>Enter your Password: </label>

<input type = "password" name = "pswd">

<br>

<input type = "submit">

</form>

</body>

</html>

Login.jsp

<%

String username = request.getParameter(" uname ");


String password = request.getParameter(" pswd ");

if(username.equals(" Tutorials ") &&


password.equals(" 12345 ") ) {

out.println(" You are logged in!! ");

} else {

out.println(" Try Again!! Wrong Credentials ");

%>

You might also like