how to convert org.w3c.dom.Element object to text
example:
from:
Element e= doc.createElement("element");
e.setAttribute("x", "10");
need function to transform to :
result text :
<element x="10"/>
or:
<element x="10"></element>
|
|
Using only the standard API, this works:
Not pretty, but avoids using proprietary APIs. |
|||
|
|