2

我有somefile我想使用的编码base64

File.open('data/somefile.edf').read.encoding
=> #<Encoding:UTF-8>

base64_string = Base64.encode64(open("data/somefile.edf").to_a.join)

然后我想解码那个文件

file = open('new_edf.edf', 'w') do |file| 
  file << Base64.decode64(base64_string)
end

但我收到一个错误:

Encoding::UndefinedConversionError: "\xE1" from ASCII-8BIT to UTF-8
from (pry):22:in `write'
4

1 回答 1

1

我认为问题在于默认情况下打开文件以在文本模式下写入。要解决此问题,请使用二进制模式打开文件:

File.open('new_edf.edf', 'wb') { ... }

您还可以查看其他问题:Ruby 1.9 Base64 encoding write to file error

于 2016-02-22T17:55:36.340 回答