[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

extract the value attribute of a node in a xml file.

  • To: xml-dev@l...
  • Subject: extract the value attribute of a node in a xml file.
  • From: Nishi Prafull <nishiprafull@g...>
  • Date: Wed, 20 Apr 2005 12:47:05 -0700
  • Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Xt+AVAE1xE/q81nYPbM3kymhSAqFTlK07nytXM+tNrFl1bDlFIwgQn4WKiR3xWyneH/vWtel/JgPkiMgTS9sromCC2nALjIgpw3hiOJAGQllB2tegkpo56/LY0AMSfa31JmwDUhQDWPqiZ2rutsQ+BNfmikaGVXx76s601nWavM=
  • Reply-to: Nishi Prafull <nishiprafull@g...>

gmail url
Hi:

I have an info.xml file containing the following

<Targets AGENT_SEED="195839280">
<Target TYPE="info_apache" DISPLAY_NAME="HTTP_Server" VERSION="2.0">
<Property NAME="HTTPPort" VALUE="7779"/>
</Target>
</Targets>

There will be other such <Target/> entries in the file but I need to
only extract the value of the Property called HTTPPort using DOM
Parser.

Will the following code work -->

URL info_xml_url = new URL("file://" + "/temp/info.xml");
XMLDocument xmlDocument = null;
NodeList nodeList = null;

DOMParser parser = new DOMParser();
parser.parse(info_xml_url);
xmlDocument = parser.getDocument();

nodeList=xmlDocument.selectNodes("/Targets//target/property");
for(int i=0; i<nodeList.length(); i++)
{
if (XMLElement)nodeList.item(i). getAttribute("name").equals("HTTPPort")
{
   String port_val = node.getAttribute("value");
}
}

Please let me know.

Thanks.

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.