Where can I find some character decoders for the non-officially supported charsets? I.e. I don't want to reinvent the wheel, surely someone must have already written some decoders for their own purposes or as a library?
Thanks!
Where can I find some character decoders for the non-officially supported charsets? I.e. I don't want to reinvent the wheel, surely someone must have already written some decoders for their own purposes or as a library?
Thanks!
The sources from libiconv will do perfectly! It's a pity that I'll have to write the code of the decoders myself, but the thanks to the fact that I need to support only single-byte encodings (apart from UTF-8), it's going to be a piece-of-cake job.
Thanks for the support!
I've written my own reader with its decoders. AlbiteStreamReader provides the ability to read characters from encodings, not natively supported by Java's InputStreamReader:
And it works in J2ME, too.
Sources & binaries can be found at github.