Hey, I'm trying to use VTD-XML to parse XML given to it as a String, but I can't find how to do it. Any help would be appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
It seems VTD-XML library lets you read byte array data. I'd suggest in that case, convert the String to bytes using the correct encoding. If there's an encoding signaled in the begining of the XML string:
Then use that:
If there's not an encoding, please use one, for VTD-XML know how to decode the bytes:
Note that in the later case you can use any valid encoding because the string you have in memory is encoding-agnosting (it's in UTF-16 but when you ask for the bytes it will be converted). |
|||||||||
|
|
VTD-XML doesn't accept a string because string implies UCS-16 encoding, which means it is not really a xml document.. as defined by the spec, xml is usually encoded in utf-8, ascii, iso-8859-1 or UTF-16LE or BE format... does my answer make sense? |
|||||||||||||||||
|