在Ruby中,你可以使用File类来读取文件的内容。以下是一些常用的方法:
file = File.open("example.txt", "r") # 以只读模式打开文件
content = file.read # 读取文件的全部内容
puts content # 输出文件内容
file.close # 关闭文件
file = File.open("example.txt", "r") # 以只读模式打开文件
file.each_line do |line| # 逐行读取文件
puts line # 输出每一行内容
end
file.close # 关闭文件
file = File.open("example.txt", "r") # 以只读模式打开文件
file.each do |content| # 使用块读取文件内容
puts content # 输出每个块的内容
end
file.close # 关闭文件
注意:在实际编程中,建议使用File.read
或File.each_line
方法,因为它们更简洁。而使用块的方式更适合处理大文件,因为它不会一次性将整个文件加载到内存中。