如何检查 XML 元素是否包含 CDATA?
我正在用 java 解析 XML 文件。我如何知道 emelent 是否含有 CDATA?换句话说如何识别包含CDATA的元素?谢谢
WL
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须读取标签的文本,然后查找文本中是否存在包含字符串等的 CDATA。有点像:
You will have to read the text of the tag then find if CDATA exists within the text with a string contains or the like. Kind of like: