在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
读文件 #Ruby 读取文件 #方法一 file = File.open("/Users/Desktop/demo.txt","r") while line = file.gets puts line end #方法二 File.open("/Users/Desktop/demo.txt","r").each_line do |line| puts line end
写文件 File.open("/Users/Desktop/demo.txt","a+") do |f| f.puts "hi" end
r是只读,文件已存在,指针在文件头;r+是读写方式,读写指针都在文件头。w是只写方式,w+是读写方式建立新文件,读指针在文件头。a是追加方式打开文件,指针指向文件尾;a+是读写方式打开文件,读从文件开始,写从文件尾开始。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论