Is it possible to call servlet with parameters in the URL?

Answers were Sorted based on User's Feedback



Is it possible to call servlet with parameters in the URL?..

Answer / muhammad farhaan

If HTML form submitted with Get request to servlet URL
which is defined in action attribute of HTML form then form
values are sent as a name value pairs appended at the end of
URL calling servlet. List of parameters is separated by ?
sign with rest of URL and paramter are append to the list of
paramter as name value pair separated by & sign. You can
manually attach the paramters as a list of name value pairs
separated by & sign at the end of query string followed by ?
sign.
The maximum length of URL changes across the browser
generally you can not send more than 255 characters long URL
string so keep in mind that when you send paramters with URL
string then whole length of URL must not be more than 255
character.

Is This Answer Correct ?    8 Yes 1 No

Is it possible to call servlet with parameters in the URL?..

Answer / ravikiran.chd

yes...those parameters can be accessible with
request.getParameter() or request.getParameterValues()

Is This Answer Correct ?    6 Yes 0 No

Is it possible to call servlet with parameters in the URL?..

Answer / joak

yes, is posible.

Is This Answer Correct ?    5 Yes 1 No

Is it possible to call servlet with parameters in the URL?..

Answer / gg

can i call parameters value if it Arabic Words i call it but
get unreadable text

thank

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Servlets Interview Questions

What is the difference between servlet and jsp?

0 Answers  


Why setMaxAge() and getMaxAge() methods are used in Cookies?

2 Answers  


What is new in ServletRequest interface ? (Servlet 2.4)

0 Answers  


What is the use of java servlet api?

0 Answers  


Given the request path below, which are context path, servlet path and path info?

0 Answers  






How ThreadSafe page attribute will be working in Servlet as well as in JSP?Automatically ThresdSafe is true in JSP so service method will be destroy in each and every request or not?so how thresd will handle srevice method?

1 Answers   AZTEC,


Explain the features are in servlet 3?

0 Answers  


What is war file?

0 Answers  


What are the different ways we can maintain state between requests?

0 Answers  


What is cookies in servlet with example?

0 Answers  


What is the major difference between servlet and applet?

0 Answers  


How can we refresh automatically when new data is entered into the database?

0 Answers  


Categories