标签: ruby
如何将它写成一行?
in_file = open(from_file) indata = in_file.read
答案 0 :(得分:3)
File.read("/path/to/file")
它将读取整个文件内容并将其作为结果返回。
答案 1 :(得分:1)
open("README.md").read
对于非常小的文件,这是可以接受的。