I have the list:
ArrayList list = new ArrayList();
I write this list select option:
<td>
<select name="database1">
<option value="" selected>select</option>
<%
for(int i=0;i<list.size();i++) {
Field=list.get(i).toString();
%>
<option value="<%=Field %>"><%=Field %></option>
<%} %>
</select>
</td>
So my requirement is without using for loop. We directly write list
in select option
.
I guess You are doing great, just change your code like:-
<option value="<%out.print(Field); %>"></option>
Hope this worksIt's not recommended to use java code inside jsp. You should try to avoid it.
The approach that needs to be followed in your case, is to first set the Arraylist as an attribute in the servlet that is calling the jsp page.
Servlet Code
Then, in the JSP code, use jstl to iterate through the values of the list to populate the select options.
JSP Code
Read this: How to avoid Java code in JSP files?