gpt4 book ai didi

c# - 如何在 .NET 中通过 Saxon-HE 9.8 使用 XSLT 3.0

转载 作者:行者123 更新时间:2023-11-30 14:46:44 27 4
gpt4 key购买 nike

我使用的是 Win7,并将我的 VSC# 项目设置为 .NETFramework4。然后下载SaxonHE9-8-0-7N-setup.exe并安装。然后将 saxon9he-api.dll 引用到 C# 项目并 using Saxon.Api;这是我的 program.cs:

static void Main(string[] args)
{
var xslt = new FileInfo(Path.GetFullPath(Path.Combine(Environment.CurrentDirectory.ToString(), @"..\..\..")) + @"\TEST.xslt");
var input = new FileInfo(Path.GetFullPath(Path.Combine(Environment.CurrentDirectory.ToString(), @"..\..\..")) + @"\TEST.xml");
var output = new FileInfo(Path.GetFullPath(Path.Combine(Environment.CurrentDirectory.ToString(), @"..\..\..")) + @"\result.txt");

var processor = new Processor();
var compiler = processor.NewXsltCompiler();
var executable = compiler.Compile(new Uri(xslt.FullName));
var transformer = executable.Load();
var serializer = new Serializer();

FileStream outStream = new FileStream(output.ToString(), FileMode.Create, FileAccess.Write);
serializer.SetOutputStream(outStream);

using (var inputStream = input.OpenRead())
{
transformer.SetInputStream(inputStream, new Uri(Path.GetTempPath()));
transformer.SetParameter(new QName("password"), new XdmAtomicValue("secret"));
transformer.Run(serializer);
outStream.Close();
}
}

这是我的 TEST.xslt:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:math="http://www.w3.org/2005/xpath-functions/math"
xmlns:map="http://www.w3.org/2005/xpath-functions/map"
xmlns:array="http://www.w3.org/2005/xpath-functions/array"
exclude-result-prefixes="xs math map array"
version="3.0">

<xsl:output method="json" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:template match="root">
<xsl:map>
<xsl:map-entry key="local-name()">
<xsl:apply-templates/>
</xsl:map-entry>
</xsl:map>
</xsl:template>

<xsl:template match="items">
<xsl:variable name="items" as="item()*">
<xsl:apply-templates/>
</xsl:variable>
<xsl:sequence select="map { local-name() : array { $items }}"/>
</xsl:template>

<xsl:template match="item">
<xsl:sequence select="map { 'foo' : xs:integer(foo), 'bar' : string(bar) }"/>
</xsl:template>

</xsl:stylesheet>

在运行之前我收到两条错误消息:

The element 'template' in namespace 'http://www.w3.org/1999/XSL/Transform' has invalid child element 'map'

The 'as' attribute is not declared.

运行时我收到一条错误消息:

Error in xsl:map-entry/@key TEST.xslt:FOTY0013: Cannot write a function item to an XML tree in built-in template rule for /root in the unnamed mode**

那么我应该怎么做才能不出错地运行这段代码?

最佳答案

将创建转换器的行更改为创建一个 Xslt30Transformer

        var transformer = executable.Load30();

使用 XSLT 3 及其各种不同且更灵活的输入和输出选项,然后运行样式表使用

        using (var inputStream = input.OpenRead())
{
transformer.ApplyTemplates(inputStream, serializer);
outStream.Close();
}

这样,我之前发布的 XSLT 代码和您用作示例的 XSLT 代码运行良好(我必须调整文件路径,但这显然取决于文件与 C# 项目相关的方式/位置)。

请注意,通常 XSLT 3 的初始匹配选择和初始化全局变量的全局上下文项可能不同,样本样式表没有任何全局变量或参数,但如果有它们,您还需要设置GlobalContextItem ( https://www.saxonica.com/html/documentation/dotnetdoc/Saxon/Api/Xslt30Transformer.html#GlobalContextItem ) 到 XdmValue。

至于在 Visual Studio 中编辑 XSLT 3 时收到的各种编辑器警告或错误消息,嗯,简单地在系统上安装 XSLT 3 处理器不会将 VS 转换为 XSLT 3 编辑器,您需要检查/如何设置 Visual Studio 以使用 XSLT 3 模式,XSLT 3 规范在 https://www.w3.org/TR/xslt-30/schema-for-xslt30.xsd 有一个链接但我认为它使用模式语言 1.1,而 Microsoft 仅支持模式语言版本 1.0,因此可能很难找到并安装 VS 模式,使其能够识别和支持 XSLT 3 编辑。

关于c# - 如何在 .NET 中通过 Saxon-HE 9.8 使用 XSLT 3.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48055282/

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