aspose file tools
The moose likes Java in General and the fly likes Double xml read Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Double xml read" Watch "Double xml read" New topic
Author

Double xml read

Matthew Tilic
Ranch Hand

Joined: Apr 07, 2011
Posts: 41

Hey,

I have an xml string and am doing a system out to see the results. The only issue use I keep getting duplicate results! why is this





Here is an example of my output:


Element tagname : client
getcharactervalue: website
..................................
Element tagname : client
getcharactervalue: website
..................................
Element tagname : request
getcharactervalue: insert
..................................
Element tagname : request
getcharactervalue: insert
..................................
Element tagname : databaseschema
getcharactervalue: barapplication
..................................
Element tagname : request
getcharactervalue: insert
..................................
Element tagname : table
getcharactervalue: ownerAddress
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

Move lines 13-15 to before the loop; they are called for the node itself, not the child nodes.
Be warned though that the cast to Element may fail; whitespace like line breaks are often seen as Text nodes, and will show up in the child node list.


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Double xml read
 
Similar Threads
Overwriting a specific XML section
Efficient XML Parsing
Save XML nodes in a String array for ChooseNodes
How to recursively traverse JTree?
Where i'm wrong ?