Am new to Java.
Am appending a new parameter at the end of the URL as below.
http://localhost:8080/BugReport/home?projectName=Thrivent:PS_Thrivent_SOW#04_YSL1.1AggFL&Consulting
Am reading this in my servlet as below with request.getParameter
String projectNameStr = request.getParameter("projectName");
Am observing a strange behaviour. If i pass # symbol along with the parameter then projectnameStr is printing only to that symbol. i.e, Thrivent:PS_Thrivent_SOW
Am not able to read the complete string if the # symbol is present in the parameter?
How to solve this problem? Please someone help me here.