-
Notifications
You must be signed in to change notification settings - Fork 64
Closed
Labels
Description
I'm new to parsing XML, so I may have my terms conflated and not know what the hell I'm talking about.... But I have a xml file like this:
<configuration>
<property>
<name>foo1</name>
<value>bar</value>
</property>
</configuration>
and I want to add a node, under the parent, so I'll end up having:
<configuration>
<property>
<name>foo1</name>
<value>bar</value>
</property>
<property>
<name>foo1</name>
<value>baz</value>
</property>
</configuration>
Is that possible with this library? and if so, any pointers/examples would be greatly appreciated.