- read(options = {}) -> String[permalink][rdoc][edit]
- 
自身が表す内容を読み込んで文字列として返します。 self.open(options={}) {|io| io.read } と同じです。このメソッドによって返される文字列は OpenURI::Meta によって extend されています。 - [PARAM] options:
- ハッシュを与えます。
 require 'open-uri' uri = URI.parse('http://www.example.com/') str = uri.read p str.is_a?(OpenURI::Meta) # => true p str.content_type