Read binary file as string in Ruby

后端 未结 8 1654
无人共我
无人共我 2020-11-30 16:40

I need an easy way to take a tar file and convert it into a string (and vice versa). Is there a way to do this in Ruby? My best attempt was this:

file = File         


        
8条回答
  •  佛祖请我去吃肉
    2020-11-30 17:30

    If you can encode the tar file by Base64 (and storing it in a plain text file) you can use

    File.open("my_tar.txt").each {|line| puts line}
    

    or

    File.new("name_file.txt", "r").each {|line| puts line}
    

    to print each (text) line in the cmd.

提交回复
热议问题