Hello,<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div>Hi,</div>
<div>      Could you just brief me how will you do it? and also i have to remove all the &lt;int&gt; tags from the document. Please reply as early as possible. Thanking you</div></blockquote></div><br>For example like that:<br>
<br>String xmlString2 = &quot;&lt;input&gt;&lt;int&gt;&lt;a&gt;aaa&lt;/a&gt;&lt;b&gt;bbb&lt;/b&gt;&lt;/int&gt;&lt;/input&gt;&quot;;<br>        <br>Document doc = new SAXBuilder().build(new StringReader(xmlString2));<br><br>
Element rootEl = doc.getRootElement();<br>        <br>Element intEl = rootEl.getChild(&quot;int&quot;);<br>rootEl.removeContent(intEl);<br>rootEl.addContent(intEl.removeContent());<br>        <br>new XMLOutputter().output(doc, System.out);<br>
<br>I get: <br>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br>&lt;input&gt;&lt;a&gt;aaa&lt;/a&gt;&lt;b&gt;bbb&lt;/b&gt;&lt;/input&gt;<br><br>Regards,<br>Grzegorz<br clear="all"><br>-- <br>To be a man is, precisely, to be responsible.<br>