0

以下代码产生:

编码错误:由于转换错误,输出转换失败,字节 0xE8 0xED 0xF4 0xEE I/O 错误:编码器错误

当 XML 中包含西里尔字母时,文本分配 executionContext 一切正常。分配给 .content 是有意的。我需要将 XML 括号转换为 < 的东西。

#!/bin/env ruby
# encoding: Windows-1251

.....

    executionContext =  
        '<?xml version="1.0" encoding="Windows-1251"?>
        <vco:execution-context xmlns:vco="http://www.vmware.com/vco" xmlns="vco">
            <vco:parameters>
                <vco:parameter name="информация" type="string" description="" scope="local">        
                    <vco:string>&lt;operation&gt;информация&lt;/operation&gt;</vco:string>
                </vco:parameter>
            </vco:parameters>
        </vco:execution-context>'




    docExCon = Nokogiri.XML(executionContext)

    docExCon.at( '//vco:string' ).content = '<operation>информация</operation>'
4

0 回答 0