Hi friends,
please help me to solve this.
i need to read the elements from xml file.I am using sax api.
My xml looks like this :->
<test>
<test1>hello1</test1>
<test2>hello2</test2>
<test3>hello3</test3>
</test>
In my startElement(...){
elementName.equals("test"){
//I need to get all the elements inside the test element.ie test1,test2,test2.with out going to the endElement.Is there any method to solve thses problem
}