File.readlines UTF-8中的无效字节序列(ArgumentError)

时间:2013-08-19 06:34:30

标签: ruby

我正在处理一个包含来自网络数据的文件,并在某些日志文件中遇到 UTF-8中无效字节序列(ArgumentError)错误。

a = File.readlines('log.csv').grep(/watch\?v=/).map do |s|
s = s.parse_csv;
{ timestamp: s[0], url: s[1], ip: s[3] }
end
puts a

我想让这个solution正常工作。我见过有人在做

.encode!('UTF-8', 'UTF-8', :invalid => :replace)

但它似乎不适用于File.readlines

File.readlines('log.csv').encode!('UTF-8', 'UTF-8', :invalid => :replace).grep(/watch\?v=/)

':未定义的方法`encode!' #(NoMethodError)

在文件读取期间过滤/转换无效UTF-8字符的最简单方法是什么?

<击> 尝试1

试过这个,但它失败了,同样的无效字节序列错误。

IO.foreach('test.csv', 'r:bom|UTF-8').grep(/watch\?v=/).map do |s|
  # extract three columns: time stamp, url, ip
  s = s.parse_csv;
  { timestamp: s[0], url: s[1], ip: s[3] }
end

<击>

的解决方案

这似乎对我有用。

a = File.readlines('log.csv', :encoding => 'ISO-8859-1').grep(/watch\?v=/).map do |s|
s = s.parse_csv;
{ timestamp: s[0], url: s[1], ip: s[3] }
end
puts a

Does Ruby provide a way to do File.read() with specified encoding?

2 个答案:

答案 0 :(得分:6)

  

我正在尝试让这个解决方案正常运行。我见过有人在做

   .encode!('UTF-8', 'UTF-8', :invalid => :replace)
     

但它似乎不适用于File.readlines。

File.readlines返回一个数组。数组没有编码方法。另一方面,字符串确实有编码方法。

  

你能不能给上面的替代方案提供一个例子。

require 'csv'

CSV.foreach("log.csv", encoding: "utf-8") do |row|
  md = row[0].match /watch\?v=/
  puts row[0], row[1], row[3] if md
end

或者,

CSV.foreach("log.csv", 'rb:utf-8') do |row|

如果您需要更快的速度,请使用fastercsv gem。

  

这似乎对我有用。

File.readlines('log.csv', :encoding => 'ISO-8859-1')

是的,为了读取文件,您必须知道其编码。

答案 1 :(得分:0)

在我的情况下,脚本默认为US-ASCII,我无权在服务器上更改它以防止其他冲突。

我做了

File.readlines(email, :encoding => 'UTF-8').each do |line|

但这对一些日文字符不起作用,所以我在下一行添加了这个,并且工作正常。

line = line.encode!('UTF-8', 'binary', invalid: :replace, undef: :replace, replace: '')