Hi; Well, I’m not sure exactly why – but you can’t
use and InputStreamReader to pass in a file encoded with utf-8 and have it work
– because the InputStreamReader has an encoding parameter and that
apparently changes how the xml is processed. If you set the InputStreamReader encoding to utf-8, then it
works. But that is not a good solution as you might get an xml file with
another encoding. - dave |