I’m receiving string from client like following –
String time_S = request.getParameter(Message.KEY_TIME);
Now, If I want to receive a linked list data how should I do that? I tried to use getParameterValues but I don’t think I could use it properly.
Thanks in advance.
You can’t really retrieve a ‘linked list’ per se over HTTP – it needs to be serialized (transformed from a Java object to a string). There are plenty of ways of doing this, but you might have them send it to you as a set of comma separated values and then parse it into a linked list or java data structure of your choice.