我有一个通过FTP从大型机获取平面文件的进程。这通常适用于某些文件。在其他人中,我得到:Encoding::UndefinedConversionError: "\xC3" from ASCII-8BIT to UTF-8
使用Net::FTP's
gettextfile
方法。
这是我的代码:
def find_file( position, value ) # => Value = CLKDRP03.txt, Forget the variable Position
ftp = Net::FTP.new('IP') # => status 200
ftp.login('user','pass') # => True
files = ftp.list('*' + value + '*') # => Obtain the file
if files[0] != nil
str_file = files[0].split(" ").last # => Obtain the name of the file. In this case CLKDRP03.txt
ftp.gettextfile(str_file,'data/input/' + str_file) # => ERROR!, str_file = CLKDRP03.txt
# => data/input is the path where I put the files from FTP.
return str_file
else
return false
end
end
如果我评论ftp.gettextfile
的行,错误就会继续。
提前致谢!抱歉我的英文。
答案 0 :(得分:13)
对于从谷歌来这里的任何人来说,这就是我修复编码错误的方法。
在您声明打开文件之前添加此代码
.force_encoding("UTF-8")
所以在将文件声明为这样的变量之前:
csv_file = params[:file].read.force_encoding("UTF-8")
希望这会有所帮助,因为我有很长一段时间没有这个问题,但现在它可以正常工作!