StringEscapeUtils.unescapeXml() problem

Hi !

I want to use the function " StringEscapeUtils.unescapeXml() " to indicate special characters on the web.
But I don’t know to use it by Elements !
I use JDOM for Tamino

  
while(it.hasNext()){ 
               pers = (PersonInitialen)it.next(); 
               person = new Element("Person"); 
               person_name =new Element("Name"); 
               person_name.setText(pers.getName()); 
                
               person_init = new Element("Initialen"); 
               person_init.setText(pers.getInitialen()); 
                
               person.addContent(person_name); 
               person.addContent(person_init); 

I want to write special characters on the web for “Name” and “Initialen” and then it will be stored in the tamino-database.
May anybody help me in this case ?

the problem is solved :O) …this was not the right code for that.