Support windows-1251 encoding for async (non-blocking) parsing
prophe05 opened this issue · 1 comments
prophe05 commented
Hello.
I tried to parse xml with windows-1251, but caught error:
com.fasterxml.aalto.WFCException: Unsupported encoding 'windows-1251': only UTF-8 and US-ASCII support by async parser
Any plans to support encodings differing from UTF-8 and US-ASCII.
Or did I miss something?
cowtowncoder commented
No plans to add handling of other encodings for non-blocking parsers at this point.
Technical challenge is that non-blocking parsers is byte-based, not character based (Reader
), so support would require lots of code duplication.