| Author |
Getting level of XML file with SAX
|
Leslie Chaim
Ranch Hand
Joined: May 22, 2002
Posts: 336
|
|
Is there any way I can tell in my Handler at what level I am in the XML file? Or must I handle this with my own logic
|
Normal is in the eye of the beholder
|
 |
Lasse Koskela
author
Sheriff
Joined: Jan 23, 2002
Posts: 11962
|
|
|
You need to track the position yourself. One handy way to do this is to add the element's name into a java.util.Stack in startElement() and pop() the top-most element in endElement(). Then, you'll always have the knowledge of how "deep" you are in the hierarchy.
|
Author of Test Driven (2007) and Effective Unit Testing (2013) [Blog] [HowToAskQuestionsOnJavaRanch]
|
 |
 |
|
|
subject: Getting level of XML file with SAX
|
|
|