Using httpservletresponse interface

Using httpservletresponse interface

How do you use httpservletresponse interface?

View Answers

May 23, 2012 at 4:03 PM

Example:

package roseindia;

import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class AddCookie extends HttpServlet {
public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{
    Cookie langCookie = new Cookie("fruits", "Apple");
    response.addCookie(langCookie);
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<h2> Cookie added</h2>");
    out.println("</html>"); 
    }
}

Description: -addCookie() is one of the method of Httpservletresponse interface. This example shows how we are adding cookie to our HttpServletResponse.After executing your servlet, you can check your browser cookies to confirm that your cookie has been added or not.









Related Tutorials/Questions & Answers:
Using httpservletresponse interface
Using httpservletresponse interface  How do you use httpservletresponse interface?   Example: package roseindia; import... of Httpservletresponse interface. This example shows how
Various methods of httpservletresponse interface
Various methods of httpservletresponse interface  What are the various methods of httpservletresponse interface
Advertisements
Multiple inheritance using interface - Java Beginners
Multiple inheritance using interface  Hi, I understand the concept & uses of an interface. But i dont know about the implementation of interface in real time. Because most of the interface examples are with one class
Httpservletresponse null pointer exception.
Httpservletresponse null pointer exception.  What is Httpservletresponse null pointer exception?   NullPointerException occurs when we try to implement an application without referencing the object and allocating
Caching HttpServletResponse's content.
Caching HttpServletResponse's content.  I am trying to cache the response using Filter. I have extended HttpResponseWrapper. It has issues with flushing the streams. If you hit the service for the first time, it fetches the data
interface
interface  can we extend interface?   Hi Friend, Yes an interface can be extended by other interface like using extends keyword interface A{ } interface B extends A{ } For Example: interface IntefaceA { void
interface
is achieved by using the interface (by implementing more than one interface at a time...interface  what the use of interface?   An interface is one... variables.Any class can implement(inherit)the interface and make use
interface
interface   what is the use of marking interface
Diff between Runnable Interface and Thread class while using threads
Diff between Runnable Interface and Thread class while using threads  Diff between Runnable Interface and Thread class while using threads  ... to Runnable Interface. 3)Using Runnable Interface, you can run class several
Diff between Runnable Interface and Thread class while using threads
Diff between Runnable Interface and Thread class while using threads  Diff between Runnable Interface and Thread class while using threads  ... to Runnable Interface. 3)Using Runnable Interface, you can run class several
interface.
interface.  Write short note on interface.   Please visit the following link: Java Interface
interface
interface  will the interface implements a interface   Hi Friend, No. Interface can extends another interface but cannot implements it, because interface will not contain the implementation. Thanks
INTERFACE
INTERFACE  how interface support multiple inheritance in java
interface
interface   Hi I have interface in that interface 3 methods are there , after some days client said that,i want to add one more method in that interface ,so how can add 4 method so that the implemented class did not affect
interface
interface  develop a library interface which has drawbook(),returnbook()(with fine),checkstatus() and reservebook() methods.all the methods tagged with public
interface
interface  What is marker interface ?? what is its use in java programming?? is this us in programming ??Explain is implementation with code
interface
interface  develop a library interface which has drawbook(),returnbook()(with fine),checkstatus() and reservebook() methods.all the methods tagged with public
Interface
for Interface in java? and want to know why they used interface instead of multiple inheritance? Thanks in advance   An interface is one which has abstract... implement(inherit)the interface and make use of the methods(functions
interface
interface  why do we need interface in java..if it`s usefull for to obtain multiple inheritance in the sense how it gonna be achieved...and i can...)...the y we need interface...THis is question often i heard from my developer
Interface
Interface  I need to implement the interface without overriding its method and also don't use abstract class for this. How to do
interface
interface  What is the exact use of interface in real time scenario? some people says that interface provides multiple inheritance. Is it true...; Through interface, we can achieve the multiple inheritance. Java does
Interface
Interface  1.Create an interface names ShapeInterface that has two... class a.Rectangle that uses the interface b.Circle that uses the interface and abstract class   interface ShapeInterface{ int l=0,b=0; public
Interface
Interface  1.Create an interface names ShapeInterface that has two... class a.Rectangle that uses the interface b.Circle that uses the interface and abstract class   interface ShapeInterface{ int l=0,b=0; public
Interface
Interface  Declare an Interface called property containting a method compute price to compute &return the price.The inerface is to be implemented by follwaing two class (1)Bungalow&(2)Flat both the lasses have following
sendRedirect In JSP
sendRedirect In JSP          sendRedirect() method is a method of HttpServletResponse interface. When a client sends a request for a particular page
interface_querry
interface_querry  By using interface we have to implement all unimplemented methods into our class, even though we are not using all of methods, what is the alternative
What is an interface?
What is an interface?  What is an interface
Abstract and Interface
for using interface? Why we use interface instead of abstract? What..., etc.. 4)Java interface should be implemented using keyword 'implements'; A Java abstract class should be extended using keyword 'extends'. 5)An interface can
How to handle the text using Key Listener Interface
How to handle the text using Key Listener Interface... to handle the text using the key events on the Java Awt component. All the key events are handled through the KeyListener Interface. In the given example, we
Can an Interface implement another Interface?
Can an Interface implement another Interface?   Hi, Can an Interface implement another Interface? Thanks
Can an Interface extend another Interface?
Can an Interface extend another Interface?   Hi, Can an Interface extend another Interface? thanks
ServletRequest interface
ServletRequest interface   What is new in ServletRequest interface
Map interface
Map interface  What is the Map interface
Java interface
Java interface  What is the List interface
List interface
List interface  What is the List interface
Interface implimentation
Interface implimentation  How to impliment an interface For Achieveing MVC & loosCupling in Any Project
callable interface
callable interface  When we use the callable interface instated of runable interface
Java Interface
Java Interface  Can an Interface have an inner class?  Yes, interface can have inner class. for example- public interface gyan { static...("in interface"); }; public static void main(String args
Map.Entry Java Interface
Map.Entry Java Interface Sometimes you need to work with map entry. This can be done using Map.Entry Interface of Java. The Map interface's entrySet.... Methods of Map.Entry Interface Methods Description boolean
web interface
web interface  hii sir, i want to develop a project name web GU interface for oracle like 10g can anyone help me plz how to develop using jsp and servelets provide code for WOI
Marker Interface,Java Marker Interface
inheritance is achieved by using the interface (by implementing more than one... Interface in Java       In this section we will learn about Interface and Marker Interfaces in Java
Java interface
Java interface  What must a class do to implement an interface?  It must provide all of the methods in the interface and identify the interface in its implements clause
Java interface
Java interface  What modifiers may be used with an interface declaration
logfile interface
logfile interface  How to create logfile interface for programs in java
Marker interface
Marker interface  what is a marker interface? what is its significance
Abstract and Interface
Abstract and Interface  what is the difference between Abstract and Interface accurateatly
null interface
null interface   what is the null interface and what is the use of it in real java project ?   Hi Friend, A null interface is an interface without any methods.Is also known as Marker interface. Null interfaces are used
marked interface
marked interface  how jvm work with marked interface?(that means how it will know its behaviour with out any methods)   Hi, Learn it at Market Interface in Java tutorial page.ADS_TO_REPLACE_1 Thanks
Interface in java
Interface in java  An Interface method implemented in more than one different class with same method name. To avoid overriding of methods, we use ObjectReference for that class
Marker Interface
Marker Interface  What is the need of Marker Interface?When should we use

Ads