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.
Rubyでファイルの内容全体をどのように置き換えますか?
Dir["#{File.dirname(__FILE__)}/data/**/*.json"].each do |f| encoded = f.read.force_encoding('UTF-16').encode('utf-8') # ???????? end
いくつかの json ファイルの内容を再エンコードしようとしています。