我上传了 csv 文件,该文件可以使用 UTF-8 编码或其他类似 KOI8-R 的编码。我的问题是当我说:
File.new @path, "r:#{encoding}"
result = CSV.read(@uploaded_file, { :headers => true,:encoding => encoding })
编码是 KOI8-R,我将结果写入 mysql Rails 3 会自动将值从 KOI8-R 转换为 UTF-8 吗?
提前致谢 :)