Here you can find the source of getChildTextContent(Element elemenet, String childElemenetName)
public static String getChildTextContent(Element elemenet, String childElemenetName)
//package com.java2s; /*/*from w w w .ja v a 2s . co m*/ * This file is part of Dorado 7.x (http://dorado7.bsdn.org). * * Copyright (c) 2002-2012 BSTEK Corp. All rights reserved. * * This file is dual-licensed under the AGPLv3 (http://www.gnu.org/licenses/agpl-3.0.html) * and BSDN commercial (http://www.bsdn.org/licenses) licenses. * * If you are unsure which license is appropriate for your use, please contact the sales department * at http://www.bstek.com/contact. */ import org.w3c.dom.Element; public class Main { public static String getChildTextContent(Element elemenet, String childElemenetName) { return org.springframework.util.xml.DomUtils.getChildElementValueByTagName(elemenet, childElemenetName); } }