|
is there anyway i can merge split xmls? i have the following :
sub-directory (this name should be the name of the merged file)
split0.xml
<Root>
<child1>...</child1>.......<child100>..</child100>
</Root>
split1.xml
<Root>
<child101>...</child101>.......<child200>..</child200>
</Root>
and so on. what i need is:
<merged file name>
<Root>
<child1>...</child1>.......<childx>..</childx>
</Root>
(where x would be the last child number in the last split file).
is this possible through DOM? if so, could anybody please direct me to the solution? i need this desperately. Thanks a lot for you help.
|