如何在Ruby中写入文件?
我需要从数据库中读取数据,然后将其保存在文本文件中。
我如何在Ruby中做到这一点? Ruby中是否有任何文件管理系统?
Ruby File类将为您提供::new
和::open
来龙去脉,但它的父类IO类深入到#read
和#write
。
你在寻找以下吗?
File.open(yourfile, 'w') { |file| file.write("your text") }
您可以使用简短版本:
File.write('/path/to/file', 'Some glorious content')
它返回写入的长度; 看到::写更多的细节和选项。
链接地址: http://www.djcxy.com/p/4361.html