Java XML Text Node Create addText(Document doc, Node node, String text)

Here you can find the source of addText(Document doc, Node node, String text)

Description

Add a text node to a node.

License

Open Source License

Parameter

Parameter Description
doc document
node parent node
text the text

Declaration

public static void addText(Document doc, Node node, String text) 

Method Source Code

//package com.java2s;
/*//from   w  ww  . j a va 2 s.  c  o  m
 * FFNLauncher
 * Copyright (C) 2013 Abel Hoogeveen <http://www.sigmacoders.nl>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

import org.w3c.dom.Document;

import org.w3c.dom.Node;

public class Main {
    /**
     * Add a text node to a node.
     * 
     * @param doc document
     * @param node parent node
     * @param text the text
     */
    public static void addText(Document doc, Node node, String text) {
        node.appendChild(doc.createTextNode(text));
    }
}

Related

  1. addText(Document doc, Node parent, String data)
  2. addTextElement(Document doc, String name, String value, Element parent)
  3. addTextElement(Document document, Node parentNode, String elementName, String elementText)
  4. addTextElement(final Document document, final Element parentDom, final String namespace, final String name, final String value)