最近Rubyの勉強を初め、nokogiriを使ってスクレイピングを行おうとしたものの『.jsp』の使われているページ情報を取得することができません。
どなたかご教授願います。
nokogir.rb
require 'open-uri'
require 'nokogiri'
url = 'http://plus.timescar.jp/view/station/detail.jsp?scd=U001'
charset = nil
html = open(url) do |f|
charset = f.charset
f.read
end
doc = Nokogiri::HTML(open(url), nil, "utf-8")
p doc.title