xslt到多个输出和基本输出目录

时间:2019-02-26 18:08:18

标签: c# xml xslt saxon

xsl代码如下

<xsl:template match="/">
  <xsl:for-each select="/t:Flow/t:AccountingRecords/t:AccountingRecord">
    <xsl:result-document method="xml" href="UBL-invoice.2.1-{t:Reference}-output.xml">
      <xsl:apply-templates select="."/>
    </xsl:result-document>
  </xsl:for-each>
</xsl:template>

我的代码完全是示例中的代码

Processor proc = new Processor();
var comp = proc.NewXsltCompiler();
Xslt30Transformer exe = comp.Compile(new Uri("file:///" + System.IO.Path.GetFullPath("./Styles/style.xslt"))).Load30();

var baseOutUri = new System.Uri(Directory.GetCurrentDirectory());
exe.BaseOutputURI = baseOutUri.AbsoluteUri;
Console.WriteLine(exe.BaseOutputURI);

DocumentBuilder builder = proc.NewDocumentBuilder();
builder.BaseUri = new Uri("file:///" + System.IO.Path.GetFullPath("./ar2.xml"));

XdmNode inp = builder.Build(System.IO.File.OpenRead(System.IO.Path.GetFullPath("./ar2.xml")));

Serializer serializer = proc.NewSerializer();
serializer.SetOutputWriter(Console.Out);

// Transform the source XML and serialize the result document
exe.ApplyTemplates(inp, serializer); // < ==== Exception here

Console.WriteLine写道:

  

file:/// D:/ dev / fromSvn / cclb / bas / bin / debug

但是输出生成于:

  

D:\ dev \ fromSvn \ cclb \ bas \ bin

如果要解决此问题,我必须将代码修改为:

exe.BaseOutputURI = baseOutUri.AbsoluteUri + "/";

我是正确的还是想念什么?

1 个答案:

答案 0 :(得分:1)

这是URI解析的工作方式。如果基本URI为/a/b/c,而相对URI为w.xml,则根据基本URI解析相对URI的结果为/a/b/w.xml。解析相对URI的算法是对两个字符串的语法操作,它从未尝试确定基本URI /a/b/c是指向目录,普通文件还是没有特别的内容。