为什么这个简单的 Ruby 程序没有打印出我期望的结果?
我有这个:
require 'tempfile'
t = Tempfile.new('test-data')
t.open
t.sync = true
t << "apples"
t.puts "bananas"
puts "contents are [#{t.read}] (#{t.size} bytes)"
t.close
这个打印:
contents are [] (14 bytes)
为什么内容没有实际显示?我使用的是 Ruby 1.9.2。
I have this:
require 'tempfile'
t = Tempfile.new('test-data')
t.open
t.sync = true
t << "apples"
t.puts "bananas"
puts "contents are [#{t.read}] (#{t.size} bytes)"
t.close
This prints:
contents are [] (14 bytes)
Why aren't the contents actually shown? I'm on Ruby 1.9.2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题是您正在文件中的当前 IO 指针处进行读取,该指针在写入后已经位于末尾。您需要在
读取
之前执行倒回
。在你的例子中:The problem is that you are doing a
read
at the current IO pointer in the file, which is already at the end after your writes. You need to do arewind
before theread
. In your example:您可能位于流的末尾,没有剩余的字节。写入之后、读取之前,您应该倒带文件(重新打开或查找位置 0)。
You are probably at the end of the stream, where there are no more bytes left. After writing and before reading you should rewind the file (reopen or seek to position 0).