I have a problem with my program.
I have a servlet; in this servlet save session attribute
ArrayList<Integer> list = new ArrayList<Integer>;
list.add(1);
request.getsession().setAttribute("list",list);
The attribute is now a String, not an ArrayList. In fact, when I try to do:
request.getsession().getAttribute(list)
is a string, not an array.
I need an array.
thank
source
share