I'm parsing some file with XmlPullParser in Android Everything goes fine except for some especial HTML characters on the text like this:
í it should be í
é it should be é
but they are missing on the Strings I extract:
camión it should be camión and I get camin
and the same with other similar characters.
I don't know exactly where the problem is, if it's on xmlpullparser.getText() or on Java String
How can I solve this?