Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Ruby1.9.3を使用しています
配列をファイルに書き込み、(後で別の配列で)元に戻すことができるようにするための最良の方法を探しています
ありがとう
文字列と数値のみが含まれている場合は、 Marshal、YAML、またはCSVを使用して配列をシリアル化できます。
Rubyの場合、同じことを行う方法はたくさんあります。IOクラスhttp://www.ruby-doc.org/core-1.9.3/IO.html#method-c-writeを確認することをお勧めします。
IO.readとIO.writeは、これを行うための可能なメソッドです。