将字符串转换为二进制 base64

pin*_*her 0 xslt base64 xslt-2.0 xslt-1.0

有没有办法将字符串转换为二进制 base64?我看过很多参考资料,但最终没有奏效。例如我有这个输入文件:

<RootElement xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     <Data>
         <Binary>
               <RawData>This element should convert string to binary base64.</RawData>
         </Binary>
    </Data>
</RootElement>
Run Code Online (Sandbox Code Playgroud)

我需要生成:

<RootElement xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Data>
    <Binary>
        <RawData>VGhpcyBlbGVtZW50IHNob3VsZCBjb252ZXJ0IHN0cmluZyB0byBiaW5hcnkgYmFzZTY0Lg==</RawData>
    </Binary>
</Data>
Run Code Online (Sandbox Code Playgroud)

我创建了一个 xslt 并使用了我在网上看到的命名空间:

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dp="http://www.datapower.com/extensions">
<xsl:output method="xml" version="1.0" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>
<xsl:template match="RawData">
    <xsl:element name="RawData">
        <xsl:value-of select="dp:encode(., 'base-64')"/>
    </xsl:element>
</xsl:template>
</xsl:stylesheet>
Run Code Online (Sandbox Code Playgroud)

谢谢你。

Ily*_*mov 5

有一个纯 XSLT 1.0 解决方案适用于任何 XSLT 处理器:JAXP、Saxon、Xalan、Xsltproc、Microsoft:

  1. 下载base64.xsl
  2. 下载base64_binarydatamap.xml
  3. 使用 XSLT 1.0:

    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:b64="https://github.com/ilyakharlamov/xslt_base64">
        <xsl:output method="xml"/>
        <xsl:include href="base64.xsl"/>
        <xsl:template match="@*|node()">
            <xsl:copy>
                <xsl:apply-templates select="@*|node()" />
            </xsl:copy>
        </xsl:template>
        <xsl:template match="/RootElement/Data/Binary/RawData">
            <xsl:call-template name="b64:encode">
                <xsl:with-param name="asciiString" select="text()"/>
            </xsl:call-template>
        </xsl:template>
    </xsl:stylesheet>
    
    Run Code Online (Sandbox Code Playgroud)