Hi all. I want to modify an xml archive with sentences like this:<br>&lt;user username=&quot;both&quot; password=&quot;tomcat&quot; roles=&quot;tomcat,role1&quot;/&gt;<br><br><br>As you can see, there are more than one value for the attribute &quot;roles&quot;. So my question is how can I do that with jdom?
<br>My only choice is attr.setValue(&quot;tomcat,role1&quot;) ??? I would like to be able to do something like that: attr.setValue(&quot;tomcat&quot;) and attr.setValue(&quot;role1&quot;) or something like that so that the final sentence be roles=&quot;tomcat,role1&quot;
<br>Thnx.<br>