i have an xml like this ...
<ROOT>
<a/>
<a/>
<a/>
</ROOT>
i want to add tags to the <a/> like this..
<ROOT>
<bay>
<a/>
</bay>
<bay>
<a/>
</bay>
<bay>
<a/>
</bay>
</ROOT>
how to do tis in java.. the file size is more than 10 MB.. kindly suggest a nice parser to use inthis senario... i can use only java 1.4....
<ROOT>
<a/>
<a/>
<a/>
</ROOT>
i want to add tags to the <a/> like this..
<ROOT>
<bay>
<a/>
</bay>
<bay>
<a/>
</bay>
<bay>
<a/>
</bay>
</ROOT>
how to do tis in java.. the file size is more than 10 MB.. kindly suggest a nice parser to use inthis senario... i can use only java 1.4....
Comment