Ruby 读取文件 读写二进制文件
File.open('in.dat', 'rb') {|fin| File.open('out.dat', 'wb') {|fout| fout.print(fin.read) }}