我正在创建一个应用程序,它将通过xml访问ebay api来搜索项目。我已经按照指南Android developer guide XMLPullParser使用Pull解析器,我能够解析基本的xml。但是根据我的需要,没有足够的关于pullparser的信息,因为我试图以链接和pullparser网站中未提及的格式访问项目。
产品项目位于项目数组中。在返回第一个项目后尝试运行解析器时,解析器将移回Item数组级别,而不是为每个项目循环。这导致解析器在整个xml中运行并且只返回一个项目。尝试几天后,我尝试的任何东西都不会让解析器返回到项目数组级别。
这是XML
的结构 <FindPopularItemsResponse>
<Timestamp>2013-04-08T18:30:44.139Z</Timestamp>
<Ack>Success</Ack>
<Build>E817_CORE_APILW2_15902151_R1</Build>
<Version>817</Version>
<ItemArray>
<ItemID>330624952975</ItemID><EndTime>2013-05-03T13:31:06.000Z</EndTime>
<ViewItemURLForNaturalSearch></ViewItemURLForNaturalSearch>
<ListingType>FixedPriceItem</ListingType><GalleryURL></GalleryURL>
<PrimaryCategoryID>73522</PrimaryCategoryID><PrimaryCategoryName>
</PrimaryCategoryName><BidCount>706</BidCount><ConvertedCurrentPrice
currencyID="USD">14.95</ConvertedCurrentPrice>
<ListingStatus>Active</ListingStatus><TimeLeft>P24DT19H22S</TimeLeft>
<Title> </Title>
</ItemArray>
</FindPopularItemsResponse>
由于
路
答案 0 :(得分:0)
没有任何代码,这个实际上很难回答。
你的循环结构可能应该是这样的:
while (eventType != XmlPullParser.END_DOCUMENT) {
switch (eventType) {
case XmlPullParser.START_TAG:
if (xpp.getName().compareTo("ItemID") == 0) { // new item found
// handle the whole item here if the format is static
}
// other stuff
break;
case XmlPullParser.END_TAG:
// TODO
break;
case XmlPullParser.TEXT:
// TODO
break;
}
答案 1 :(得分:0)
您提供的xml中只有一个项目。如果您的示例中没有多个项目,则很难正确回答。但我会尝试只使用ItemID。创建ItemID列表,当您点击该节点的文本时,将新的ItemID添加到列表中。
创建对象列表并跟踪当前节点
List<ItemID> bdxr = new ArrayList<ItemID>();
...
String N = ""; // I know it's upper case but its one character and important
...
if (eventType == XmlPullParser.START_TAG) {
N = xpp.getName(); // current node
...
} else if (eventType == XmlPullParser.TEXT) {
if (N.equals("ItemID")) {
// create an ItemID Object and add the text to it
bdxr.add(new ItemID(xpp.getText());
...
} else if (eventType == XmlPullParser.END_TAG) {
N = ""; // no current node.
祝你好运,将项目添加到一个简单的xpp循环列表中
答案 2 :(得分:0)
你还没有完全指定你试图从xml中提取哪些数据,所以....假设你想要每个标签的数据,这就是我怎么做的
int eventType = parser.getEventType();
while (eventType != XmlPullParser.END_DOCUMENT) {
String name;
String itemID, endTime, viewItemURLForNaturalSearch, listingType;
switch (eventType) {
case XmlPullParser.START_DOCUMENT:
Log.d("Ebay ", " Start of Document");
break;
//look for the starting tag "item array" in the xml
case XmlPullParser.START_TAG:
name = parser.getName();
if(name.equalsIgnoreCase("ItemArray")) {
/*to handle nested tags.
"parser.nextTag()" goes to the next starting tag immediately following "ItemArray",
and "itemID = parser.nextText()" assigns the text within that tag
to the string itemID*/
parser.nextTag();
itemID = parser.nextText();
Log.d("Listing ", itemID);
parser.nextTag();
endTime = parser.nextText();
Log.d("Listing ", endTime);
parser.nextTag();
viewItemURLForNaturalSearch = parser.nextText();
Log.d("Listing ", viewItemURLForNaturalSearch);
parser.nextTag();
listingType = parser.nextText();
Log.d("Listing ", listingType);
}
break;
}
eventType = parser.next();
}
希望这会有所帮助。