Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Jetty 9.2.2 returns 0xd1 0x85 (cyrillic lowercase ha in unicode) as 0xd1 0x0a

The problem was that the file was being read as ISO-8859-1 instead of UTF-8, and then a pre-processor was replacing the 0x85 byte (0x0085 is new-line), with 0x0a before returning it through jetty. So this was not a jetty problem at all.



Back to the top