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
You mean <[![CDATA ... ]]> sections? There is no way to detect them, but lucky for you there is also absolutely no need to detect them. – TomalakJan 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. – QuentinJan 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 – waqasJan 26 '12 at 14:35
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? – waqasJan 26 '12 at 14:50
<[![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