私はこのエラーについて複数の同様の質問があることを知っています、そして私は運がなくてそれらの多くを試しました。私が抱えている問題はバイトに関係していて、\xA1
投げています
ArgumentError:UTF-8の無効なバイトシーケンス
私は次のことを試みましたが成功しませんでした:
"\xA1".encode('UTF-8', :undef => :replace, :invalid => :replace,
:replace => "").sub('', '')
"\xA1".encode('UTF-8', :undef => :replace, :invalid => :replace,
:replace => "").force_encoding('UTF-8').sub('', '')
"\xA1".encode('UTF-8', :undef => :replace, :invalid => :replace,
:replace => "").encode('UTF-8').sub('', '')
各行は私のためにエラーをスローします。私は何が間違っているのですか?
アップデート:
上記の行はIRBでのみ失敗します。ただし、同じString#encodeメソッドと引数を使用してCVSファイルの行をエンコードするようにアプリケーションを変更したところ、ファイルから行を読み取るときに同じエラーが発生します(注:同じ文字列で操作を実行すると機能しますIOを使用しない)。
bad_line = "col1\tcol2\tbad\xa1"
bad_line.sub('', '') # does NOT fail
puts bad_line # => col1 col2 bad?
tmp = Tempfile.new 'foo' # write the line to a file to emulate real problem
tmp.puts bad_line
tmp.close
tmp2 = Tempfile.new 'bar'
begin
IO.foreach tmp.path do |line|
line.encode!('UTF-8', :undef => :replace, :invalid => :replace, :replace => "")
line.sub('', '') # fail: invalid byte sequence in UTF-8
tmp2.puts line
end
tmp2.close
# this would fail if the above error didn't halt execution
CSV.foreach(tmp2.path) do |row|
puts row.inspect # fail: invalid byte sequence in UTF-8
end
ensure
tmp.unlink
tmp2.close
tmp2.unlink
end