Java XML Element Root getRootElement(final String respuestaPost)

Here you can find the source of getRootElement(final String respuestaPost)

Description

Obtiene el nodo raiz del documento xml

License

Open Source License

Parameter

Parameter Description
respuestaPost a parameter

Exception

Parameter Description
ParserConfigurationException an exception
IOException an exception
SAXException an exception

Declaration

public static Element getRootElement(final String respuestaPost)
        throws ParserConfigurationException, IOException, SAXException 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.io.ByteArrayInputStream;
import java.io.IOException;

import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import org.w3c.dom.Element;

import org.xml.sax.SAXException;

public class Main {
    /**// www . ja  va2 s.c  o m
     * Obtiene el nodo raiz del documento xml
     *
     * @param respuestaPost
     * @return
     * @throws ParserConfigurationException
     * @throws IOException
     * @throws SAXException
     */
    public static Element getRootElement(final String respuestaPost)
            throws ParserConfigurationException, IOException, SAXException {
        return DocumentBuilderFactory.newInstance().newDocumentBuilder()
                .parse(new ByteArrayInputStream(respuestaPost.getBytes())).getDocumentElement();
    }
}

Related

  1. getRootElement(Document document)
  2. getRootElement(Document document)
  3. getRootElement(Document parent)
  4. getRootElement(final Element descendant)
  5. getRootElement(final File definition)
  6. getRootElement(final XMLEventReader bufferedXmlEventReader)
  7. getRootElement(String elementName, String namespace, String prefix)
  8. getRootElement(String location)
  9. getRootElementFromString(String payload)