Home Tutorial Jsp ArrayList in JSP

 
 

ArrayList in JSP
Posted on: March 12, 2010 at 12:00 AM
JSP ArrayList is a class and a member of Java Collection Framework.It is the resizable-array and permit all element including the null.

ArrayList in JSP

ArrayList is a class and a member of Java Collection Framework. It is the resizable-array and permit all element including the null. It is similar to Vector but it is unsynchronized. Iterator return the element from the list in proper sequence.

 Description of Program:

In this example there are two file index .jsp and postIndex.jsp. The index.jsp fill take the user input from three different textbox and value post to the postIndex.jsp, which take all  values and placed into the ArrayList object. Through Iterator all the element of the list in shown in proper sequence

index.jsp

<%@page contentType="text/html" pageEncoding="UTF-8"%>
First Element
Second Element
Third Element

postIndex.jsp:

<%@page import="java.util.*" contentType="text/html" pageEncoding="UTF-8"%> <% String str1 = request.getParameter("arraylistvalue1");%> <% String str2 = request.getParameter("arraylistvalue2");%> <% String str3 = request.getParameter("arraylistvalue3");%> <% ArrayList alist = new ArrayList(); alist.add(str1); alist.add(str2); alist.add(str3); %> <% Iterator iter = alist.iterator(); %> <%! int x=0; %> <% while(iter.hasNext()){ %> <%}%>
Index Values
<%=++x%> <%=iter.next()%>

Output:

Related Tags for ArrayList in JSP:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.