Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
446 views
in Technique[技术] by (71.8m points)

How to do XPath or XML parsing in Android

I have string variable which contains XML of the form:

<item>
    <descriptin>abc</descripton>
    <title>def</title>
</item> 

I want to the display the title text in a listview but I'm getting XML when I use:

String s=hitdoc.get("text")

I'm working with Lucene search in android if that helps.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I want to the display the title text

You need to evaluate an XPath expression like:

/item/title/text()

this selects any text node (in your case just a single one) that is a child of a title that is a child of the top element named item

Or, to get the string directly, evaluate this XPath expression:

string(/item/title)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...