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

Categories

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

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

1 Answer

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...