Hello All,
I am trying pass some value through url in the form of query
string (like
http://url?param1=hello¶m2=real+data) . Please note that the value of param2 contains a '+' character.
My problem is while retrieving the data on other side using request.getParameter(String) method , the value obtained is something like "real data". ie, the + got replaces with a space.
Can any one suggest a possible solution for this problem?
Thanks in Advance