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

Write the code to get the server information in servlet.

1109


Describe in brief RequestDespatcher?

1182


What is ServletContext object?

1157


How do you invoke a Servlet? What is the difference between doPost method and doGet method?

1185


What is httpservlet and how it is different from genericservlet?

1161


What is the purpose of inter-servlet communication?

1145


What is cookie? Why is cookie used?

1103


What are the differences between servlet context vs servlet config?

1138


What exactly are the functions of servlet?

1160


What do you mean by url pattern in servlet?

1158


What is difference between GenericServlet and HttpServlet?

1277


What are the types of servlets? Explain

1327


What is a web application and what is it’s directory structure?

1126


How does tomcat servlet container work?

1131


What do you mean by web applications?

1274