I am developing a Web Application with JSP and Servlet that involve user writing and sending feedback in a textarea and saving it to the database. Suppose the user enter like this:
Error here
Need fixing there
Bug everywhere
I can use request.getParameter("textareaname")
to get the content in the textarea and save it in the database. But the saved result and the data retrieve will be:
Error here Need fixing there Bug everywhere
Is there a way to keep the text area format as how the user enter it? As in keep the line break? Any help is appreciate