tags:

views:

424

answers:

1

Hello all,

I have an XML document built with

org.xmlpull.v1.XmlSerializer

This document contains following XML prolog

<?xml version='1.0' encoding='utf-8' standalone='yes' ?>

When I try to parse this document using

import org.xmlpull.v1.XmlPullParser;

with following configuration code

XmlPullParser pullParser = Xml.newPullParser();
pullParser.setInput(theInputStream, "utf-8");

I get undecoded utf-8 strings when I call

String text = pullParser.getText();

So it seems that XmlPullParser in Android (I use 1.5) doesn't support utf-8. Did I miss something?

Thank you in advance.

A: 

what do you mean by "undecoded"? please provide an example program, your expected output, and the actual output.

Elliott Hughes