我在解析这个结构 xml 时遇到了困难:
<Publications>
<Publication>
<PublicationID>1</PublicationID>
<PublisherID>1</PublisherID>
<Date>2012-03-28 13:39:04</Date>
</Publication>
<Publication>
<PublicationID>2</PublicationID>
<PublisherID>1</PublisherID>
<Date>2012-01-23 10:00:03</Date>
</Publication>
</Publications>
也许有人可以给我一些如何解析它的想法?
我的请求看起来:
String method_name = "GetPublications";
// creating new SoapObject
soap = GetSoapObject(method_name);
SoapSerializationEnvelope envelope = GetEnvelope(soap);
HttpTransportSE androidHttpTransport = new HttpTransportSE(REQUEST_URL);
androidHttpTransport.call(NAMESPACE + method_name, envelope);
soap = (SoapObject) envelope.getResponse();
kSoap2-Android 正在返回:
anyType{Publications=anyType{Publication=anyType{PublicationID=1; PublisherID=1; Date=2012-03-28 13:39:04; }; Publication=anyType{PublicationID=2; PublisherID=1; Date=2012-01-23 10:00:03; }; }; }
谢谢。