Я хочу получить кодировку кодировки любой страницы.Вот 2 страницы, например: http://google.com/
https://news.sp.netkeiba.com/?pid=news_view&no=146493
uri = URI.parse(url)
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = (uri.scheme == "https")
request = Net::HTTP::Get.new(uri.request_uri)
response = http.request(request)
# Get specific header
doc = response["Content-Type"]
1 страница результата:
text/html; charset=UTF-8
2-й результат:
text/html
ожидается:
text/html; charset=EUC-JP
спасибо!