文件显示错误



将内容插入文件时:

    file1=File.new("output.txt","w+")
    puts "enter the string"
    in1=gets.chomp
    if file1
            file1.syswrite()
    else
        puts cant write
    end
    file1.close

试试这个,它在 File 类上使用 write 方法。 请记住,当您编写 put 语句时,后面的 String 需要用引号引起来。

file1=File.new("output.txt","w+")
puts "enter the string"
in1=gets.chomp
if file1
  file1.write(in1)
else
  puts "can't write"
end
file1.close

相关内容

  • 没有找到相关文章

最新更新