OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

use SAX to get "tree" under XML node



i'm using the Apache SAX parser and i need to get the XML tree underneath a specific node.
 
for example in the following xml file...
 
<fields>   
    <field1>value 1</field1>
    <field2><style value="red"/><values>value 2</values></field2>
</fields>
 
i want to be able to get the trigger on the element field2 and somehow get back the string
 
<style value="red"/><value1>value1</value1><value2>value 2</value2></values>
 
if i use a regular sax processor to get all the characters i end up getting only the text which in this case would be "value 1 value 2"
 
any way around this?
 
thanks