How to transform this code written in java into jstl tags in a JSP page. I want to print this on a JSP page. Thanks
<% List<?> currentUserList = (List<?>)(session.getAttribute("currentSessionUser"));%>
     for(int i=0; i<currentUserList.size(); i++) {
                Object[] row = (Object[]) currentUserList.get(i);
                ContUser cont = (ContUser)row[0];
                Emp emp= (Emp)row[1];
                System.out.println("Cont ID:"+cont.getIdCont()+", USER:"+ cont.getUser()+ ", Emp ID:"+ emp.getIdEmp()+", Name:"+ emp.getName());
     }
 
     
    