I have the following XML.
<class>
        <student>
                <attribute name="id">10</attribute>
                <attribute name="name">Mark</attribute>
        </student>
        <student>
                <attribute name="id">11</attribute>
                <attribute name="name">Mary</attribute>
        </student>

</class>

public class Student{
        String id;
        String name;
}

How do I write use Commons Digester to set the properties id and name of
the class Student?

I cannot change the structure of XML.

Thank you
-Manoj


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to