https://bz.apache.org/bugzilla/show_bug.cgi?id=61048

--- Comment #5 from Ivan <al...@mail.ru> ---
Here is the cause:

org.apache.poi.xssf.streaming.SheetDataWriter#outputQuotedString

case '\n':
case '\r':
  if (counter > last) {
     _out.write(chars, last, counter - last);
  }
  _out.write("&#xa;");
  last = counter + 1;
  break;


There should be _out.write("&#xd;") for '\r'
and _out.write("&#xa;") for '\n'

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to