在使用Ruby Debugger花了几个小时之后,我终于了解到我需要清理一些格式错误的HTML页面才能将它们提供给Hpricot。到目前为止我找到的最佳解决方案是Tidy Ruby interface。
Tidy在命令行中运行良好,并且Ruby界面也可以工作。但是,它需要dl/import,无法在JRuby中加载:
$ jirb
irb(main):001:0> require 'rubygems'
=> true
irb(main):002:0> require 'tidy'
LoadError: no such file to load -- dl/import
此库可用于JRuby吗?网络搜索显示it wasn't available last year。
或者,有人可以提出其他方法来清理JRuby中格式错误的HTML吗?
根据Markus的建议,我现在通过popen而不是libtidy使用Tidy。我发布了通过整理来管理文档数据的代码,以备将来参考。希望这是强大和便携的。
def clean(data)
cleaned = nil
tidy = IO.popen('tidy -f "log/tidy.log" --force-output yes -wrap 0 -utf8', 'w+')
begin
tidy.write(data)
tidy.close_write
cleaned = tidy.read
tidy.close_read
rescue Errno::EPIPE
$stderr.print "Running 'tidy' failed: " + $!
tidy.close
end
return cleaned if cleaned and cleaned != ""
return data
end
答案 0 :(得分:2)
您可以在JRuby内使用%x{...}
或反引号从命令行使用它。您可能还需要考虑popen
(并通过它来管道)。
也许并不优雅,但更有可能让你以最小的麻烦而不是试图搞乱不受支持的库。