A
André Freitas
I got a xml file like this:
<menu>
<categoria imagem="a">
<item nome="b" />
<item nome="c" />
<item nome="d" />
</categoria>
<categoria imagem="e">
<item nome="f" />
<item nome="g" />
</categoria>
</menu>
How can I read each of this values, like:
a
b
c
d
f
g
h
I dont know how many <category> i ll get, and how many <item> inside each
<category>.
Regards,
André
<menu>
<categoria imagem="a">
<item nome="b" />
<item nome="c" />
<item nome="d" />
</categoria>
<categoria imagem="e">
<item nome="f" />
<item nome="g" />
</categoria>
</menu>
How can I read each of this values, like:
a
b
c
d
f
g
h
I dont know how many <category> i ll get, and how many <item> inside each
<category>.
Regards,
André