top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to get request parameter from JSP?

+3 votes
480 views
How to get request parameter from JSP?
posted Feb 25, 2015 by Dominic

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

With this example we are going to demonstrate how to get Request Parameters in a JSP page. JavaServer Pages (JSP) is a server-side programming technology that enables the creation of dynamic, platform-independent method for building Web-based applications. JSP have access to the entire family of Java APIs, including the JDBC API to access enterprise databases. In short, to get Request Parameters in a JSP page you should:

Create a jsp page that begins with the <%code fragment%> scriptlet. It can contain any number of JAVA language statements, variable or method declarations, or expressions that are valid in the page scripting language.

Use the getParameter(String name) API method of javax.servlet.http.HttpServletRequest object to get the value of a request

GetRequestParameter.jsp

<html>

<head>
    <title>Java Code Geeks Snippets - Get Request Parameter in JSP Page</title>
</head>

<body>

    Parameter myparam: <%= request.getParameter("myparam") %>

</body>

URL:

http://localhost:8080/jcgsnippets/GetRequestParameter.jsp?myparam=myvalue

Output:

Parameter myparam: myvalue

answer Feb 26, 2015 by Karthick.c
Similar Questions
+2 votes

In my front end, i am allowing user to create and save multiple number of entries to a table at the same time.

For now i am sending this input to Java class in form of string which i am creating at the time of save. But if table size is very very big(eg. 400-500 entries), then creating string is a time taking process.
Is the any other solution for this?

+3 votes

I am trying to debug a javascript file, which is used in a .jsp file. When I debug the using F12 in IE10 I did not find that particular file in the debugger tool.

Can anybody please tell, why that particular file is not showing even it is present in project folder location?

...