up vote 0 down vote favorite
share [g+] share [fb]

i would like to ask if it is possible in ajax technology (working with servlets) to get not the whole data from responseText but line by line. i mean when putting in servlet lines of text using println method (response object) i would like to get every seperate line on the client side (for displaying achieving data like in console)

link|improve this question

56% accept rate
feedback

3 Answers

up vote 1 down vote accepted

The AJAX responses are sent as a single unit from the server to the client - so no, you cannot read them in real-time (as and when the server side code calls println). But you can easily emulate it by splitting the response string at new lines - response.split("\n") - and iterating through the resulting array.

link|improve this answer
feedback
var yourLines = yourString.split("\n");
for (var i = 0, j = yourLines.length; i < j; i++) {
  var currentLine = yourLines[i];
  /* … */
}
link|improve this answer
feedback

This is just possible. It more look like that you have trouble with splitting the lines in Javascript. The println() writes to the response with the system default line separator which is usually \r\n. So if you want to get the separate lines in Javascript, you need to split the responseText on \r\n to get an array of lines.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.