在Ruby中,可以使用以下方法打开并读取文件:
File.open("example.txt", "r") do |file| puts file.read end
content = File.read("example.txt") puts content
IO.foreach("example.txt") do |line| puts line end
确保替换代码示例中的"example.txt"为你要打开的文件路径。