Reading xml to a String variable is a bad idea. XML header contains the encoding meta data. When reading a file you have to know the encoding beforehand. Also storing an XML file in a String is waste of memory. XML parsers accept an Input Stream as a parsing source and figure out the encoding themselves correctly.
No comments:
Post a Comment