Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am parsing a XML file in java. How can I know whether the emelent contains CDATA or not? In other words how to identify elements containing CDATA?Thanks

WL

share|improve this question
You mean <[![CDATA ... ]]> sections? There is no way to detect them, but lucky for you there is also absolutely no need to detect them. – Tomalak Jan 26 '12 at 14:29
Some parsers do expose CDATA blocks (although I couldn't name one off the top of my head) … but as Tomalak says, you should never need to care. – Quentin Jan 26 '12 at 14:30
then how can I get the value of that element. with on CDATA section I can get it like nl.item(0).getFirstChild().getNodeValue(). where nl is nodelist but I cant get it where CDATA is involved. help please – waqas Jan 26 '12 at 14:35
possible duplicate of Detect whether the text content has CDATA – McDowell Jan 26 '12 at 14:41
Infact I am opening a xml file and make some changes if required and then save it back in same file or new file. while parsing i can get data even involiving CDATA by applying documentBuilderFactory.setCoalescing(true) on whole file but when I write it back then I need to know which elements were having CDATA so that I can write the file back accordingly. Any suggestions how to do it? – waqas Jan 26 '12 at 14:50
show 6 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.