1

我从 Ruby 1.8.7 升级到 1.9.2(和 Rails 3.2.2)并且遇到 Net::FTP#gettextfile 抛出 Encoding::UndefinedConversionError 的问题

我正在尝试下载一个编码为 utf-8 的 xml 文件。如果我使用 getbinaryfile,下载工作正常,但我想了解为什么 gettextfile 不起作用。

# -*- encoding : utf-8 -*-

# working
ftp = Net::FTP.open(host,user,password)
ftp.passive = true
ftp.getbinaryfile("some.xml","tmp/some.xml")

# not working
ftp = Net::FTP.open(host,user,password)
ftp.passive = true
# raises Encoding::UndefinedConversionError: "\xFF" from ASCII-8BIT to UTF-8
ftp.gettextfile("some.xml","tmp/some.xml") 

我知道如果像这样使用 File.open 我可以传递外部和内部编码:

File.open("some.xml", "r:ASCI-8BIT:UTF-8")

但无法为 Net::FTP 找到这样的选项。

我还尝试了 gettextfile 的块版本,但效果不佳并给出了相同的错误消息。

File.open("some.xml", "w:ASCII-8BIT:UTF-8") do |file|
  ftp.gettextfile("some.xml") { |line| file.write line }
end

有谁知道这里有什么问题?

4

1 回答 1

3

使用 ftp.getbinaryfile 而不是 ftp.gettextfile 然后它再次工作。:)

于 2012-05-03T18:42:07.207 回答