Hei. I use the POST method to send some information from the JSP to the Servlet. I can’t understand why, when I send the "+" character through the POST method, it will be replaced by a space character. Example: when I type the following line: 4 + 5 → The servlet will return 4 5; it replaces all the + signs. How can i fix this? I really need the + characters to be visible, because after that I need to evaluate the expressions.
source
share