I have an XML that looks something like this:
<xml>
<example><string>test</string></example>
</xml>
Is it possible to make SimpleXML restore those HTML-escaped characters during deserialization and continue as usual, inflating these classes:
@Root
public class Xml {
@Element
public Example example;
}
public class Example {
@Element
public String string;
}