you can use session.setAttribute("X", x ); in abc.jsp
and in the next file use String[] x = session.getAttribute("X");
I'm pretty sure it would work like this in concept. I know setAttribute sets an
Object so you'd just have to get it and probably cast it in the next file.