我正在寻找一种方法来本地读取和解析远程CSV(托管在特定网站上)。
我在互联网上发现了一些有趣的例子,它们使用了FasterCSV,在ruby 1.9.2中已经合并为CSV。我发现你可以用这种方式使用gems'csv'和'open-uri'来读取远程CSV:
require 'csv'
require 'open-uri'
def read(url)
open(url) do |f|
f.each_line do |l|
CSV.parse(l) do |row|
puts row
end
end
end
end
但是当我调用这个函数时,我得到一个例外:
ERROR IOError: closed stream
任何人都可以解释为什么?有什么不对的吗?我应该选择其他方法来读取远程CSV吗?
我到目前为止找到的最佳解决方案是:
def read(url)
data = []
begin
open(url) do |f|
data = CSV.parse f
end
rescue IOError => e
# Silently catch the exception ...
end
return data
end
但有点似乎不那么干净。我真的不喜欢默默地捕捉一个它本不应该的例外......
我可以使用
重现错误ruby 1.9.2p0 (2010-08-18 revision 29036) [x86_64-darwin10.4.0]
和
ruby 1.9.2p180 (2011-02-18 revision 30909) [x86_64-darwin10.7.0]
这是我test.rb
文件中的代码:
require 'rubygems'
require 'open-uri'
require 'csv'
def read(url)
data = []
begin
open(url) do |f|
data = CSV.parse f
end
end
puts data
end
read("http://www.euribor-ebf.eu/assets/modules/rateisblue/processed_files/myav_EURIBOR_2011.csv")
这是ruby test.rb
命令
/Users/marzu/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/open-uri.rb:152:in `close': closed stream (IOError)
from /Users/marzu/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/open-uri.rb:152:in `open_uri'
from /Users/marzu/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/open-uri.rb:671:in `open'
from /Users/marzu/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/open-uri.rb:33:in `open'
from test.rb:8:in `read'
from test.rb:16:in `<main>'
我在Mac OS X 10.6.7上使用rvm 1.6.9
。
有什么建议吗?
答案 0 :(得分:37)
在Mac OS X 10.6.7上,使用ruby r1.9.2,我得到与上面显示的相同的错误。但是使用以下代码读取CSV文件适用于提供的示例URL:
require 'rubygems'
require 'open-uri'
require 'csv'
def read(url)
CSV.new(open(url), :headers => :first_row).each do |line|
puts line
puts line[0]
puts line['FEB11']
end
end
read("http://www.euribor-ebf.eu/assets/modules/rateisblue/processed_files/myav_EURIBOR_2011.csv")