views:

29

answers:

1

I am using SAXParser to parse an xml document having three different tags But in the result i get the value of only "one tag and not Other two tags.. Can someone explain? My xml is :

 <outertag>
 <innertag> hello</innertag>
  <othertag>good morning</othertag>
  <thirdtag Attribute="its a pleasant day"/>
  </outertag>
A: 

my XML is :

<outertag>
   <innertag> hello</innertag>
      <othertag>good morning</othertag>
      <thirdtag Attribute="its a pleasant day"/>
      </outertag>

I want to read all the tags but able to read only first tag..

shaireen
you can edit your question, and insert this your code within that...
st0le