我正在学习Ruby中的CSV函数,虽然我可以成功地将数组写入csv文件,但我无法将该文件转换回数组。测试代码如下(我的应用程序只需要数组中的整数)
require 'rubygems'
requires 'csv'
array = [1,2,3,4,5,6,7,8]
CSV.open('array.csv', 'w') do |csv|
csv << array
puts array.inspect
new_array = Array.new
new_array = CSV.read('array.csv', converters: :numeric)
puts new_array.inspect
end
返回
[1, 2, 3, 4, 5, 6, 7, 8]
[]
编写并填充了array.csv文件(1,2,3,4,5,6,7,8),但是当我读取它时,我只返回一个空数组。