在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
读取一个文件,将其打印出来: lines = File.open('dom.js').readlines puts "=======================" lines.each { |line| puts(line)} 或者: File.open("dom.js") do |file| while line = file.gets puts line end end 后一种能确保文件用完后被关闭。 向目标文件追加内容: file = File.open("dom.js","a") file.puts "//this is new content. " file.close 但这有时可能出现不能添加中文内容的情况,报“invalid multibyte char (US-ASCII) ”错误,我们就要在当前脚本的最上面添加这么一下注释,就没事了,即 # coding: utf-8 file = File.open("dom.js","a") file.puts "//这是新追加的内容. " file.close 创建一个新文件,并往其里面添加内容。 # coding: utf-8 file = File.new("new_file.js","w"); file |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论