• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Dom parser for XML file

 
Greenhorn
Posts: 26
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a xml file format in the following format:

<parent>
<values>1</values>
<values>1</values>
<values>1</values>
<values>1</values>
<values>1</values>
<values>1</values>
</parent>

I would like to retrieve all the "values", value. How shld i do it? Thanks

my code is:


[ July 17, 2006: Message edited by: fang eve ]
 
Sheriff
Posts: 28430
103
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That code sort of looks right. Except that I don't think your getTextValue() method should be calling getElementsByTagName; that would cause it to look for "values" elements inside your "values" element. And you will want to use the actual element name ("values") that you are interested in, not something that is just similar to it ("Values").
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic