I have a problem with my program.
I have a servlet; in this servlet save the session attribute
ArrayList<Integer> list = new ArrayList<Integer>;
list.add(1);
request.getsession().setAttribute("list",list);
Now the attribute is a String and not an ArrayList. In fact when i try to do:
request.getsession().getAttribute(list)
is a string and not an Array.
I want an Array.
Thanks