I have a list of numbers which represents the levels in a xml tree. For example I have the folowwing list:
0, 1, 2, 2, 1
and the xml (with 'lev' elements) needs to be:
<lev>
<lev>
<lev>
</lev>
<lev>
</lev>
</lev>
<lev>
</lev>
</lev>
How can I form this xml having just that list? I need a recursive method, actually I need this for a xsl file, but It will be great also having just as a Java code - with parsing that list.
I'm not sure if this is possible, having just that list. Any help will be great! Thanks.
Later edit:
For the above list let's say that we introduce the position too:
Level Position
0 0
1 1
2 2
2 3
1 4
If we are having in the list a number(level) x and after it we are having a number(level) y where y<=x we know at that point that the last element(s) (x, x-1, ..., y) needs to be closed when creating the xml.
Ex.:
when we are at position 3 (level 2) we know that the Element at position 2 (also with level 2) needs to be closed
when we are at position 4 (level 1) we know that the Element at position-s 3 (level 2) and 1 (level 1) needs to be closed