Here you can find the source of createElementAndText(Element parent, String elementName, String text)
public static Element createElementAndText(Element parent, String elementName, String text)
//package com.java2s; /* ***** BEGIN LICENSE BLOCK ***** * Version: GPL 2.0/* w w w.jav a2s. c o m*/ * * The contents of this file are subject to the GNU General Public * License Version 2 or later (the "GPL"). * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Initial Developer of the Original Code is * MiniG.org project members * * ***** END LICENSE BLOCK ***** */ import org.w3c.dom.Element; import org.w3c.dom.Text; public class Main { public static Element createElementAndText(Element parent, String elementName, String text) { if (text == null) { throw new NullPointerException("null text"); } Element el = parent.getOwnerDocument().createElement(elementName); parent.appendChild(el); Text txt = el.getOwnerDocument().createTextNode(text); el.appendChild(txt); return el; } public static Element createElement(Element parent, String elementName) { Element el = parent.getOwnerDocument().createElement(elementName); parent.appendChild(el); return el; } }