I would like to do the following thing in JSP:
List<String>list = new ArrayList<String>();
for( Arulista aru: Arulista){
list.add(aru.aruneve);
}
I did the following but it's not working:
<c:forEach items="${Arulista}" var="aru">
$list=${aru.aruneve} // $List.add(aru.aruneve) But either not working
</c:forEach>