Click here to Skip to main content
15,890,579 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to pass a list from the jsp page to a servlets, i need details.

i want to pass the fruits[i] list in my code to servlets.

following is my jsp code:

====================================

XML
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script type="text/javascript">
function checkBoxValidation()
{
for(var i=0; i < document.form1.fruit.length; i++)
{
if(!document.form1.fruit[i].checked)
{
alert("Please Select objects ");
return false;
}
else
{
alert("Click OK to display your selected objects list");
return true;
}
}
}
</script>
<title>JSP Multiple Checkbox</title>
</head>
<body>
<form name="form1" onsubmit="checkBoxValidation()">
<h3>Select Object to Compose Service</h3>
<p><input type="checkbox" name="fruit" value="Temperature"/>temperature</p>
<p><input type="checkbox" name="fruit" value="Humidity"/>humidity</p>
<p><input type="checkbox" name="fruit" value="Smoke"/>Smoke</p>
<p><input type="checkbox" name="fruit" value="floor"/>floor</p>
<p><input type="checkbox" name="fruit" value="date"/>date</p>
<p><input type="checkbox" name="fruit" value="time"/>time</p>
<p><input type="submit" value="submit"/>

</form>
<%
String fruits[]= request.getParameterValues("fruit");
request.setAttribute("listName",fruits);
if(fruits != null)
{
%>
<h4> You have selected following Objects </h4>
<ul>
<%
for(int i=0; i<fruits.length; i++)
{
%>
<li><%=fruits[i]%></li>
<%
}
%>
</ul>
<%
}
%>
</body>
</html>
Posted
Comments
Prasad Khandekar 5-Jun-13 15:13pm    
Set the action attribute of your form to a URL mapped to your servlet and also add a method="post" attribute to your form. That way when user is going to click on the submit button the form will get posted to the servlet. In the servlet you can use response.getParameterValues("fruits") to retrieve the values and process the way you want. After processing you may forward to the same JSP or a new JSP.

Please also go through this (http://javapapers.com/servlet/what-is-servlet-mapping/) article to know more about servlet mapping.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900