所以,我有一个巨大的xml文件,我想删除所有cdata节,并用安全的html编码文本节点替换cdata节点内容。
用regex去掉cdata当然会破坏解析。是否有linq、xmldocument或xmldextwriter技术可以用编码文本替换cdata?
我还不太关心最终的编码,只是如何用我选择的编码替换部分。
原始示例
---
<COLLECTION type="presentation" autoplay="false">
<TITLE><![CDATA[Rights & Responsibilities]]></TITLE>
<ITEM id="2802725d-dbac-e011-bcd6-005056af18ff" presenterGender="male">
<TITLE><![CDATA[Watch the demo]]></TITLE>
<LINK><![CDATA[_assets/2302725d-dbac-e011-bcd6-005056af18ff/presentation/presentation-00000000.mp4]]></LINK>
</ITEM>
</COLLECTION>
---
应该成为
<COLLECTION type="presentation" autoplay="false">
<TITLE>Rights & Responsibilities</TITLE>
<ITEM id="2802725d-dbac-e011-bcd6-005056af18ff" presenterGender="male">
<TITLE>Watch the demo</TITLE>
<LINK>_assets/2302725d-dbac-e011-bcd6-005056af18ff/presentation/presentation-00000000.mp4</LINK>
</ITEM>
</COLLECTION>
我想最终的目标是转向json。我试过了
XmlDocument doc = new XmlDocument();
doc.Load(Server.MapPath( @"~/somefile.xml"));
string jsonText = JsonConvert.SerializeXmlNode(doc);
但我最终得到了难看的节点,即“cdata节”键。要让前端重新开发来接受这一点,需要花费很多时间。
"COLLECTION":[{"@type":"whitepaper","TITLE":{"#cdata-section":"SUPPORTING DOCUMENTS"}},{"@type":"presentation","@autoplay":"false","TITLE":{"#cdata-section":"Demo Presentation"},"ITEM":{"@id":"2802725d-dbac-e011-bcd6-005056af18ff","@presenterGender":"male","TITLE":{"#cdata-section":"Watch the demo"},"LINK":{"#cdata-section":"_assets/2302725d-dbac-e011-bcd6-005056af18ff/presentation/presentation-00000000.mp4"}
最佳答案
使用xslt处理xml,该xslt只将输入复制到输出-c代码:
XslCompiledTransform transform = new XslCompiledTransform();
transform.Load(@"c:\temp\id.xslt");
transform.Transform(@"c:\temp\cdata.xml", @"c:\temp\clean.xml");
IDS.XSLT:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
关于c# - 删除所有CDATA节点并替换为编码的文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10543421/