gpt4 book ai didi

c# - cdata-section-elements 不工作

转载 作者:数据小太阳 更新时间:2023-10-29 02:11:53 25 4
gpt4 key购买 nike

我正在尝试通过设置全局参数在通过 XSLT(使用 Saxon-HE v9.7.0.14)生成的 xml 文件中设置密码。

密码可以包含任何字符,因此需要放在 CDATA 部分。

我试图通过将我的 xslt 的 xsl:output 元素的 cdata-section-elements 属性设置为包含密码元素的名称来实现此目的:

<xsl:output method="xml" indent="yes" cdata-section-elements="password"/>

这是行不通的。我在下面包含了示例代码、输入、xslt、当前输出和所需的输出。

我需要更改什么才能在 CDATA 部分中获取密码?

程序:

using System;
using System.IO;
using Saxon.Api;

namespace XsltTest {
class Program {
static void Main(string[] args) {
var xslt = new FileInfo(@"transform.xslt");
var input = new FileInfo(@"input.xml");
var output = new FileInfo(@"output.xml");
var processor = new Processor();
var compiler = processor.NewXsltCompiler();
var executable = compiler.Compile(new Uri(xslt.FullName));
var transformer = executable.Load();
var destination = new DomDestination();
using (var inputStream = input.OpenRead()) {
transformer.SetInputStream(inputStream, new Uri(Path.GetTempPath()));
transformer.SetParameter(
new QName("password"),
new XdmAtomicValue("secret"));
transformer.Run(destination);
}
destination.XmlDocument.Save(output.FullName);
}
}
}

转换.xslt:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="xml" indent="yes" cdata-section-elements="password"/>
<xsl:param name="password" />
<xsl:template match="@* | node()">
<bar>
<username>
<xsl:value-of select="//username"/>
</username>
<password>
<xsl:value-of select="$password"/>
</password>
</bar>
</xsl:template>
</xsl:stylesheet>

输入.xml:

<?xml version="1.0" encoding="utf-8" ?>
<foo>
<username>john</username>
</foo>

输出.xml:

<bar>
<username>john</username>
<password>secret</password>
</bar>

密码没有放在 CDATA 部分。

期望的结果:

<bar>
<username>john</username>
<password><![CDATA[secret]]></password>
</bar>

最佳答案

xsl:output 上的选项会影响序列化程序的操作,如果输出未序列化,则它们无效。您正在写入 DomDestination 而不是 Serializer(然后使用 DOM 方法序列化 DOM,它对 XSLT xsl:output 声明一无所知)。

无论如何,您的前提是错误的:“密码可以包含任何字符,因此需要将其放在 CDATA 部分中。”如果没有 cdata-section-elements,特殊字符将使用 <& 等实体引用进行序列化,这应该可以正常工作。

关于c# - cdata-section-elements 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42017856/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com