将行追加到 csv 文件 Ruby 1.9 CSV lib

发布于 2024-09-14 23:00:05 字数 262 浏览 7 评论 0原文

使用 Ruby 1.9 和 CSV lib,我似乎无法附加一行。文档中的示例打开文件,并覆盖该行。将行追加到文档的正确方法是什么?

文档中的示例:

require 'csv'
CSV.open("path/to/file.csv", "wb") do |csv|
  csv << ["row", "of", "CSV", "data"]
  csv << ["another", "row"]
  # ...
end

Using Ruby 1.9 and CSV lib, I can't seem to append a row. The example in the documentation opens the file, and overwrites the row. What is the correct way to append rows to the document?

Example from documentation:

require 'csv'
CSV.open("path/to/file.csv", "wb") do |csv|
  csv << ["row", "of", "CSV", "data"]
  csv << ["another", "row"]
  # ...
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

偏闹i 2024-09-21 23:00:05

我认为你可以将 open 更改为使用 ab

CSV.open("t.csv", "ab") do |csv|

I think you can change the open to use ab:

CSV.open("t.csv", "ab") do |csv|
别在捏我脸啦 2024-09-21 23:00:05

我通常会使用以下内容写入 csv 文件(或任何文件)

File.open("filename", 'a+') {|f| f.write("datatowrite\n)}

I will usually use the following to write to a csv file (Or any file)

File.open("filename", 'a+') {|f| f.write("datatowrite\n)}
他不在意 2024-09-21 23:00:05
File.open('filename', 'a'){ |outfile|
  CSV::Writer.generate(outfile) do |csv|
    csv << ['c1', nil, '', '"', "\r\n", 'c2']
  end
}
File.open('filename', 'a'){ |outfile|
  CSV::Writer.generate(outfile) do |csv|
    csv << ['c1', nil, '', '"', "\r\n", 'c2']
  end
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文