- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有 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'
最佳答案
我认为问题在于默认情况下文件以文本模式打开以进行写入。要解决此问题,请使用二进制模式打开文件:
File.open('new_edf.edf', 'wb') { ... }
您还可以查看其他问题:Ruby 1.9 Base64 encoding write to file error
关于ruby - 如何避免在解码文件时出现 UndefinedConversionError?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19386662/
我正在构建一个使用Chef-DK的Rails应用。 我想要实现的是执行与chef update 相同的代码。 这是代码中有趣的部分: require 'chef-dk/command/update'
我有 somefile 我想使用 base64 进行编码 File.open('data/somefile.edf').read.encoding => # base64_string = Base6
每次尝试将哈希值转换为 JSON 字符串时,我都会收到 Encoding::UndefinedConversionError - "\xC2"from ASCII-8BIT to UTF-8 错误。我
我正在使用以下代码将图像上传到我的 rails 根目录的/public/uploads/文件夹中。 uploaded_io = params[:product_image] File.open(R
伙计们!我收到以下错误消息,但我不知道该怎么做。这是一个已知的 net-ldap 错误吗?我试图更新我的 gem ,我已经在互联网上寻找更多信息。第一部分没问题,我从我的 ldap 数据库中获取了我的
我有一个网站需要加密和存储上传到服务器的二进制文件。上传和存储工作正常,但在尝试写入加密文件时出现此错误: Encoding::UndefinedConversionError ("\xDD" fro
在 Windows 上出现以下错误: Encoding::UndefinedConversionError: "\xEF" from ASCII-8BIT to UTF-8 代码: text = Fi
当我这样做时: require 'open-uri' response = open('some-html-page-url-here') response.read 在某个 url 上我收到以下错误
直到最近,我的机器上一切正常,但几天后我不断收到错误 Encoding::UndefinedConversionError: U+2713 from UTF-8 to US-ASCII 任何时候我发帖
我正在关注 Michael Hartl 的 Ruby on Rails Tutorial .我已经完成了教程,但现在当我尝试运行命令时 bundle exec rspec spec/ 我收到一大堆 E
2.2 和 raisl 4.1。我试图从用户读取 xlsx 文件。 { :multipart => true,:class => 'form-horizontal' }) do |f| %>
当我尝试使用 Mechanize 和 Ruby 2.0 提交文本区域时,我总是得到一个 Encoding::UndefinedConversionError: U+0151 from UTF-8 to
我尝试使用最新版本的 ruby,但是当运行 gem install rails 时,总是出现错误 ERROR: While executing gem ... (Encoding::Undefi
在生产中遇到此错误,但无法弄清楚问题出在哪里。相同的请求适用于本地开发。但生产失败。我正在为移动客户端使用构建 API 错误跟踪 `` Encoding::UndefinedConversionErr
我正在开发一个 Rails API 项目。这是我的代码片段 class PeopleController 最佳答案 我已经多次遇到这个问题,所以我通常会尝试在将其保存到数据库之前删除任何对 UTF-
我正在尝试删除 anchor 链接之间的 52: 52 new 使用这段代码: def self.parse_products product_hash = {} pr
我在保存新联系人时收到以下错误。有没有办法强制转换 "\xC2" 以将其强制保存为 UTF-8 格式? c = Contact.new c.save! Encoding::UndefinedConve
我试图获取这个 CSV-File使用 Net::HTTP。 File.open(file, "w:UTF-8") do |f| content = Net::HTTP.get_response(U
tvdb 中的汉尼拔剧集里有奇怪的角色。 例如: Œuf 于是ruby吐出: ./manifesto.rb:19:in `encode': "\xC3" from ASCII-8BIT to UTF-
我正在尝试使用 Carrierwave 将多个文件上传到一个名为 Post 的记录,其中包含一个名为 images 的 json 属性。但是当我尝试保存记录时,出现了这个错误: (0.5ms)
我是一名优秀的程序员,十分优秀!