I have a HttpServletRequest that receives "String myString" from a HTML - textarea. The issue I have is that everytime I write a text in the textarea, for every new line, "String myString" receives a "\r\n" instead of just a "\n". See my code below.
EDIT: I included sample function readText() on HTML file. There, data variable gets new lines as just as "\n". It is only when receiving it from HttpServletRequest when it becomes "\r\n". The thing is that I really need it to be just "\n", as I should not get any extra bytes than in the original text.
How can I fix this? Is it because of the charset UTF-8 at HTML header?
Thanks a mil,
MyServlet.html
<meta http-equiv="content-type" content="text/javascript; charset=UTF-8">
// [...]
<form action="servlet" method="POST" name="formIn">
<textarea name="originalScript" COLS=50 ROWS=25></textarea>
</form>
<script type="text/javascript" charset="UTF-8">
function readText() {
var s = document.formIn.originalScript.value;
var data = (s + "").split("");
};
</script>
MyServlet.java
public class MyServlet extends HttpServlet
{
public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
{
String myString=req.getParameter("originalScript");
}
}