Parse XML and xmljava

Source: Internet
Author: User

Parse XML and xmljava

1. parse the XML String of the String type to obtain the attribute value.

String resultXML = "<? Xml version = "1.0" encoding = "UTF-8"?>

<Result>

<Message value = "0"> yongyoulogin | ufida esb tester | creation | Failure | the specified person already exists. </message>

......

/Result> ";

(1) obtain the value of value in message

// Parse the XML string

StringReader sr = new StringReader (resultXML );

InputSource is = new InputSource (sr );

DocumentBuilderFactory factory = DocumentBuilderFactory. newInstance ();

DocumentBuilder builder = factory. newDocumentBuilder ();

Document doc = builder. parse (is );

Org. w3c. dom. Element root = doc. getDocumentElement ();

NodeList nl = root. getChildNodes ();

Node message = nl. item (0 );

String value = message. getAttributes (). getNamedItem ("value"). getNodeValue ();

 

(2) obtain the Intermediate Value of the tag.

String text = message. gettextcontent (); (text = "yongyoulogin | ufida esb tester | creation | failed | personnel already exists ,")

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.