AnastasyC0
New Member
I can't find a good example with google, so perhaps you know a tutorial for me:I want to read an xml into java that will be nested like this\[code\]<?xml version="1.0" encoding="UTF-8"?><config> <art> <name>x</name> <first>y</first> <alist> <set>1</set> <set>2</set> <set>3</set> </alist> </art> <art> <name>z</name> <first>a</first> <alist> <set>1</set> <set>2</set> <set>3</set> </alist> </art>...</config>\[/code\]I can do that like http://www.developerfusion.com/code/2064/a-simple-way-to-read-an-xml-file-in-java/ but there are no additional tags like thos "set" ones.I'm a newby in this and I learn with examples.Best regards,Adreas