简体   繁体   English

xslt:Saxon中的消息 - 消息在哪里?

[英]xslt:message in Saxon - where is the message?

I use Saxon XSLT version 9.6.0.1. 我使用Saxon XSLT版本9.6.0.1。 A stylesheet contains this code: 样式表包含以下代码:

...
<xsl:message terminate="yes">errormessage</xsl:message>
...

My application terminates as expected with this exception: 我的应用程序按预期终止,但有以下异常:

net.sf.saxon.expr.instruct.TerminationException: Processing terminated by xsl:message at line 45 in 
    at net.sf.saxon.expr.instruct.Message.processLeavingTail(Message.java:253)  at net.sf.saxon.expr.instruct.Message.processLeavingTail(Message.java:253)
    at net.sf.saxon.expr.instruct.Choose.processLeavingTail(Choose.java:822)

Now I am wondering where the "errormessage" text actually goes. 现在我想知道“错误消息”文本到底在哪里。 I can see it on stderr but need to display it to the user or put it into the logfile. 我可以在stderr上看到它,但需要将其显示给用户或将其放入日志文件中。

How can I programmatically access the message text? 如何以编程方式访问消息文本?

If you use the Saxon s9api then see the sample file S9APIExamples in the saxon resources (available at http://saxonica.com/download/download_page.xml ), it has an example setting a MessageListener : 如果您使用Saxon s9api那么请参阅saxon资源中的示例文件S9APIExamples (可从http://saxonica.com/download/download_page.xml获得 ),它有一个示例设置MessageListener

        Processor proc = new Processor(false);
        XsltCompiler comp = proc.newXsltCompiler();
        String stylesheet =
                "<xsl:transform version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>\n" +
                        "  <xsl:template name='main'>\n" +
                        "    <xsl:message><msg>Reading http://www.w3.org/TR/xslt20/ ...</msg></xsl:message>/>\n" +
                        "    <exists>\n" +
                        "      <xsl:value-of select=\"doc-available('http://www.w3.org/TR/xslt20/')\"/>\n" +
                        "    </exists>\n" +
                        "    <xsl:message><msg>finishing</msg></xsl:message>\n" +
                        "  </xsl:template>\n" +
                        "</xsl:transform>";
        StringReader reader = new StringReader(stylesheet);
        StreamSource styleSource = new StreamSource(reader, "http://localhost/string");
        XsltExecutable templates = comp.compile(styleSource);
        XsltTransformer transformer = templates.load();
        transformer.setInitialTemplate(new QName("main"));
        transformer.setMessageListener(
                new MessageListener() {
                    public void message(XdmNode content, boolean terminate, SourceLocator locator) {
                        System.err.println("MESSAGE terminate=" + (terminate ? "yes" : "no") + " at " + new Date());
                        System.err.println("From instruction at line " + locator.getLineNumber() +
                                " of " + locator.getSystemId());
                        System.err.println(">>" + content.getStringValue());
                    }
                }
        );
        Serializer out = proc.newSerializer(System.out);
        transformer.setDestination(out);
        transformer.transform();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM