" \ XC3"从ASCII-8BIT到UTF-8(Encoding :: UndefinedConversionError)

时间:2016-12-05 17:58:28

标签: json ruby cucumber

我需要在jenkins中生成一个报告json文件,但是cuc显示了这个错误: " \ XC3"从ASCII-8BIT到UTF-8(Encoding :: UndefinedConversionError)"

我在cucumber.yml中使用此个人资料:   黄瓜:--format json -o cucumber.json

1 个答案:

答案 0 :(得分:0)

如果您希望将代码点C3或195(Ã)转换为其UTF-8等效值,我会使用:

[195].pack('U')

在我的测试中,这适用于从0到1_114_111的值。