java4all@1986 java. Powered by Blogger.

How to Display date in Servlet?

>> Wednesday, June 1, 2011

In this example we are going to show how we can display a current date and time on our browser.
It is very easy to display it on our browser by using the Date class of the java.util package.
As we know that the our servlet extends the HttpServlet and overrides the doGet() method which it inherits from the HttpServlet class.
The server invokes doGet() method whenever web server recieves the GET request from the servlet.
The doGet() method takes two arguments first is HttpServletRequest object and the second one is HttpServletResponse object and this method throws the ServletException.
Whenever the user sends the request to the server then server generates two obects, first is HttpServletRequest object and the second one is HttpServletResponse object.
HttpServletRequest object represents the client's request and the HttpServletResponse represents the servlet's response.
Inside the doGet(() method our servlet has first used the setContentType() method of the response object which sets the content type of the response to text/html.
It is the standard MIME content type for the Html pages. The MIME type tells the browser what kind of data the browser is about to receive.
After that it has used the method getWriter() of the response object to retrieve a PrintWriter object.
To display the output on the browser we use the println() method of the PrintWriter class.
The coding is shown below :
import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class DisplayingDate extends HttpServlet{
public void doGet(HttpServletRequest request, HttpServletResponse
response) throws ServletException, IOException{
PrintWriter pw = response.getWriter();
Date today = new Date();
pw.println("<html>"+"<body><h1>Today Date is</h1>");
pw.println("<b>"+ today+"</b></body>"+ "</html>");
}
}
WEB.XML
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd"> -->

<web-app>
<servlet>
<servlet-name>Hello</servlet-name>
<servlet-class>DateDisplay</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Hello</servlet-name>
<url-pattern>/DateDisplay</url-pattern>
</servlet-mapping>
</web-app>

The output will be the present date

Read more...

A simple and easily understandable example in servlet?

We should start understanding the servlets from the beginning.
Lets start by making one program which will just print the "Hello World" on the browser.
Each time the user visits this page it will display "Hello World" to the user on ClientMachine.

As we know that the our servlet extends the HttpServlet and overrides the doGet() method which it inherits from the HttpServlet class.
The server invokes doGet() method  whenever web server recieves the GET request from the servlet.
The doGet() method takes two arguments first is HttpServletRequest object and the second one is HttpServletResponse object and this method throws the ServletException.
Whenever the user sends the request to the server then server generates two obects, first is HttpServletRequest object and the second one is HttpServletResponse object.
HttpServletRequest object represents the client's request and the HttpServletResponse represents the servlet's response.
Inside the doGet(() method our servlet has first used the setContentType() method of the response object which sets the content type of the response to text/html. It is the standard MIME content type for the Html pages. After that it has used the method getWriter() of the response object to retrieve a PrintWriter object.  To display the output on the browser we use the println() method of the PrintWriter class.


Below is the a small simple program.

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

public class HelloWorld extends HttpServlet{
public void doGet(HttpServletRequest request,
HttpServletResponse response)
throws ServletException,IOException{
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<html>");
pw.println("<head><title>Hello World</title></title>");
pw.println("<body>");
pw.println("<h1>Hello World</h1>");
pw.println("</body></html>");
}
}

WEB.XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!--<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd"> -->

<web-app>
<servlet>
<servlet-name>Hello</servlet-name>
<servlet-class>HelloWorld</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Hello</servlet-name>
<url-pattern>/HelloWorld</url-pattern>
</servlet-mapping>
</web-app>


The outout of the above program is:
                                              

Read more...

Difference Between Generic Servlet And HttpServlet?

Difference Between GenericServlet and HttpServlet:

1.)Generic Servlets are protocol independent, where as HttpServlet  are protocol dependent.

2.)Generic Servlets are incompatible with HTTP methods,where as HttpServlets are compatible with HTTP Methods.
3.)GenericServlet will not give an option for developers to specify different types of request at client machine,where HTTPServlets are Developers friendly.
4.)For each and every request type(Get,Post,Put,..) GenericServlet will use same execution mechanism ,where as HTTPServlets will separate execution process for each and request type.

Read more...

Life Cycle of Servlet?

Life Cycle of Servlet:




When we sent a request from client to server, the protocol will establish a socket connection Between Client and Server.Then the protocol will carry the client request to server machine.At server machine there are Main Server and Container.First the Main Server will Validates the client request ,if it is successfully then it will bypass to Container,Then the Container will perform the following steps.
1.)The container will get the requested Uri with Application name and resource name .It checks for the resources name i.e whether it is html/jsp ,if it is html/jsp then the Container will get requested Resource above WEB-INF which is in public area.
2.)If the requested resource is not html/jsp ,then it will think that is an url-pattern which is available under WEB-INF.
3.)Then the container will go to Web.XML and find the respective resources i.e Servlet by matching the URL-pattern,then the  Container will reform the following steps      

  1. Loading and Inatantiation: The servlet container loads the servlet during startup or when the first request is made. The loading of the servlet depends on the attribute <load-on-startup> of web.xml file. If the attribute <load-on-startup> has a positive value then the servlet is load with loading of the container otherwise it load when the first request comes for service. After loading of the servlet, the container creates the instances of the servlet.
  2. Initialization: After creating the instances, the servlet container calls the init() method and passes the servlet initialization parameters to the init() method. The init() must be called by the servlet container before the servlet can service any request. The initialization parameters persist untill the servlet is destroyed. The init() method is called only once throughout the life cycle of the servlet.

    The servlet will be available for service if it is loaded successfully otherwise the servlet container unloads the servlet.
  3. Servicing the Request: After successfully completing the initialization process, the servlet will be available for service. Servlet creates seperate threads for each request. The sevlet container calls the service() method for servicing any request. The service() method determines the kind of request and calls the appropriate method (doGet() or doPost()) for handling the request and sends response to the client using the methods of the response object.
  4. Destroying the Servlet: If the servlet is no longer needed for servicing any request, the servlet container calls the destroy() method . Like the init() method this method is also called only once throughout the life cycle of the servlet. Calling the destroy() method indicates to the servlet container not to sent the any request for service and the servlet  releases all the resources associated with it. Java Virtual Machine claims for the memory associated with the resources for garbage collection.

                

Read more...

FaceBook Login

HTML/JAVASCRIPT

HTML/JAVASCRIPT

HTML/JAVASCRIPT

HTML/JAVASCRIPT

Total Pageviews

STATCOUNTER

  © Blogger template Simple n' Sweet by Ourblogtemplates.com 2009

Back to TOP