euc-jp なファイルを utf-8 なファイルに変更する方法
まっくぶっく編も佳境に入ったし、なんだかホッとしたので。
そーいやさ、1.9 なリファレンスがリンク切れしてるよね。
chm なリファレンスも Encoding のことあんまり書いてないし。
File.open("utf-8.txt", "w:utf-8") do |input| File.open("euc-jp.txt", "r:euc-jp") do |output| output.each_line do |line| input.print line.encode("utf-8") end end end