Java XML Element Set setTextContent(Element element, String content)

Here you can find the source of setTextContent(Element element, String content)

Description

set Text Content

License

Open Source License

Declaration

public static void setTextContent(Element element, String content) 

Method Source Code

//package com.java2s;
/**/*  w  w w  . j a  v a 2 s  . c  om*/
 *  Copyright 2010 Yuxuan Huang. All rights reserved.
 *  
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import org.w3c.dom.Document;
import org.w3c.dom.Element;

public class Main {
    public static void setTextContent(Element element, String content) {
        Document document = element.getOwnerDocument();
        element.appendChild(document.createTextNode(content));
    }
}

Related

  1. setText(Element element, String text)
  2. setText(Element element, String text)
  3. setTextContent(Element elem, String content)
  4. setTextContent(Element elem, String value)
  5. setTextContent(Element element, String content)
  6. setTextContent(Element element, String text)
  7. setTextContent(Element node, String text)
  8. setTextContent(Element node, String text)
  9. setTextField(Element node, String subElement, String text)