I have an XMl containing a CDATA section containing a nested CDATA section. How is the unmarshalling supposed to be done in this case. Is this possible in Java? Thanks in advance.
How to unmarshal an XML containing a CDATA section within a CDATA in Java?
938 Views Asked by Vipin Pillai At
2
There are 2 best solutions below
3

JAXB framework is what you are looking for. JAXB stands for Java Architecture for XML Binding.
JAXB object has the capability of Marshaling and UnMarshaling.
It is not complex. Go for it :)
In context of your question,
You can do it by having multilevel class structure. For Eg:
Suppose you have two classes :
class A
{
(@xmlName : CDATA1)
B obj;
}
class B
{
(@xmlName : CDATA2)
String string;
}
Here when you unmarshal in context of object of class A.
The inner CDATA would land up in the string
member of obj
.
Hope this helps.
No, it's not possible to unmarshal such a document, because the document is invalid. For example:
Fails to parse because the character sequence
]]>
can only be used to mark the end of aCDATA
section. In a nutshell, you can't nestCDATA
sections. You'll have to figure out another approach.See the wikipedia article, and this question and answers for more information.