在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"为你要打开的文件路径。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: Ruby数组操作怎样查找元素