I'm making a simple drawing program with slides in it and I have an XML file with the following schema:
For every slide, I store a line or multiple line segments such as:
http://orhancanceylan.com/stack/file.xml
I'm taking "Slides" with this code:
NodeList nodeLst = doc.getElementsByTagName("Slide");
System.out.println(nodeLst.getLength());
And iterate by taking nodes:
Node fstNode = nodeLst.item(i);
But in my iteration, I couldn't figure out how I should take the line segment or lines only for the first node(first slide).
How should I parse these XML properly?
Thanks.