我需要向 html 文件写入一些数据,这些数据可能是非英语的,现在我的代码:
File.open('text2.html', 'wb') do |fo|
fo.write body_text3
end
我也试试
File.open('text2.html', 'wb') do |fo|
fo.write body_text3.encode('UTF-8')
end
但我得到错误::
在 `encode': "\xD0" 从 ASCII-8BIT 到 UTF-8 (Encoding::UndefinedCon...
我怎样才能用俄语符号保存网页?
还有我需要写什么,以便我可以在我的俄语页面上使用 nokogiri 操作?需要我进行一些对话,或者只是在代码之上 #coding: utf-8 就足够了吗?