posted 16 years ago
I got this xml:
<Rows>
−
<Row>
<aa>6</aa>
<bb>6</bb>
<cc>10</cc>
</Row>
−
<Row>
<aa>11</aa>
<bb>11</bb>
<cc>9</cc>
</Row>
−
<Row>
<aa>5</aa>
<bb>5</bb>
<cc>8</cc>
</Row>
</Rows>
and I would like to generate it to a list of Row beans so I could iterate the values aa,bb,cc of each bean.
Does anybody know a way of doing it?