Changing Encoding while Xml.parse() with SaxFeedParser Java
Posted
by zOro
on Stack Overflow
See other posts from Stack Overflow
or by zOro
Published on 2010-04-23T15:59:36Z
Indexed on
2010/04/23
16:03 UTC
Read the original article
Hit count: 228
Hi ,
I am trying to load hebrew rss using the fllow :
Xml.parse(_InputStream, Xml.Encoding.ISO_8859_1 , root.getContentHandler());
taken from ibm site : link text
I would like to use other Encoding like "ISO8859_8" rather than :
Xml.Encoding.ISO_8859_1,
Xml.Encoding.US_ASCII,
Xml.Encoding.UTF_16,
Xml.Encoding.UTF_8
Thanks a lot!
© Stack Overflow or respective owner