Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

give the syntax of doGet() and doPost()?

Answer Posted / malli

This is the example for doPost() and doGet();
In this example u can call the doPost() and doGet()like
follows:

Sample Example::
public class PrintCGI extends HttpServlet {

public void doGet(HttpServletRequest request,
HttpServletResponse response)
throws IOException {
printCGIValues(request, response); //doGet() calling
}

public void doPost(HttpServletRequest request,
HttpServletResponse response)
throws IOException {
printCGIValues(request, response); //doPost() Calling
}

public void printCGIValues(HttpServletRequest request,
HttpServletResponse response) throws IOException {

//required lines of code

}
}

Is This Answer Correct ?    19 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to commuincate between an applet and a servlet?

1057


How do I know if java is running on linux?

1127


What is the need of session tracking in web application?

1036


Can we override destroy method in servlet?

987


How will two or three servlets interact or communicate with each other?

1450


request parameter how to find whether a parameter exists in the request object?

1016


What is api in servlet?

1024


Why are servlets used?

1043


What is difference between get and post method?

1086


List some life cycle methods of a servlet.

1070


Is dispatcher servlet a singleton?

1021


How the typical servlet code look like ?

1239


What is servlet instance?

1058


Explain the working of service() method of a servlet.

968


What is a web container and what is its responsibility?

982