Ruby 2.2.0 リファレンスマニュアル > ライブラリ一覧 > net/httpライブラリ > Net::HTTPクラス > get_print
get_print(uri) -> ()
[permalink][rdoc]get_print(host, path, port = 80) -> ()
指定した対象から HTTP でエンティティボディを取得し、 $stdout に出力します。
対象の指定方法は URI で指定するか、 (host, port, path) で指定するかのいずれかです。
[SEE_ALSO] Net::HTTP.get
require 'net/http' require 'uri' Net::HTTP.get_print URI.parse('http://www.example.com/index.html')
もしくは
require 'net/http' Net::HTTP.get_print 'www.example.com', '/index.html'