Remove XML attribute using JDOM API?

I have a JDOM element like the followingExample:XML(JDOM Element)\[code\]<Details><Uniqueno>11111</Uniqueno><ROWSET name="Persons"><ROW num="1"><Name>60821894</Name><Age>938338789</Age></ROW><ROW num="2"><Name>60821894</Name><Age>938338789</Age></ROW></ROWSET></Details>\[/code\]I want to convert like:\[code\]<Details><Uniqueno>11111</Uniqueno><ROW num="1"><Name>60821894</Name><Age>938338789</Age></ROW><ROW num="2"><Name>60821894</Name><Age>938338789</Age></ROW></Details>\[/code\]note:ROWSET element is removedI want to remove the element using JDOM API?
 
Back
Top