るりまサーチ

最速Rubyリファレンスマニュアル検索!
66件ヒット [1-66件を表示] (0.018秒)
トップページ > クエリ:date[x] > ライブラリ:webrick/httpresponse[x]

別のキーワード

  1. rss date
  2. rss date=
  3. date iso8601
  4. date rfc3339
  5. date jisx0301

クラス

キーワード

検索結果

WEBrick::HTTPResponse#[](field) -> String (8.0)

レスポンスのヘッダの該当する内容を文字列で返します。

...レスポンスのヘッダの該当する内容を文字列で返します。

@param field ヘッダ名を文字列で指定します。大文字と小文字を区別しません。

p res['date'] #=> "Sat, 27 Oct 2007 08:53:03 GMT"...

WEBrick::HTTPResponse#body=(val) (8.0)

クライアントに返す内容(エンティティボディ)をセットします。

...ディングされます。

require 'webrick'
include WEBrick
res = HTTPResponse.new( { :HTTPVersion => "1.1" } )
res.body = 'hoge'
print res.to_s

#=> 出力結果
HTTP/1.1 200 OK
Connection: Keep-Alive
Date
: Sat, 27 Oct 2007 08:58:49 GMT
Server:
Content-Length: 4

hoge...

WEBrick::HTTPResponse#chunked=(flag) (8.0)

真に設定するとクライアントに返す内容(エンティティボディ)を chunk に分けるようになります。

...ick'
include WEBrick
res = HTTPResponse.new( { :HTTPVersion => "1.1" } )
res.body = 'hoge'
res.chunked = true
print res.to_s

#=> 出力結果
HTTP/1.1 200 OK
Connection: Keep-Alive
Date
: Sat, 27 Oct 2007 09:04:28 GMT
Server:
Transfer-Encoding: chunked

4
hoge
0

#...

WEBrick::HTTPResponse#content_length -> Integer | nil (8.0)

Content-Length ヘッダの値を整数で表すアクセサです。デフォルトは nil です。

...'
include WEBrick
res = HTTPResponse.new( { :HTTPVersion => "1.1" } )
f = File.new('testfile')
res.body = f
res.content_length = 2
print res.to_s

#=> 出力結果
HTTP/1.1 200 OK
Connection: Keep-Alive
Date
: Sat, 27 Oct 2007 12:04:32 GMT
Server:
Content-Length: 2

ho...

WEBrick::HTTPResponse#content_length=(len) (8.0)

Content-Length ヘッダの値を整数で表すアクセサです。デフォルトは nil です。

...'
include WEBrick
res = HTTPResponse.new( { :HTTPVersion => "1.1" } )
f = File.new('testfile')
res.body = f
res.content_length = 2
print res.to_s

#=> 出力結果
HTTP/1.1 200 OK
Connection: Keep-Alive
Date
: Sat, 27 Oct 2007 12:04:32 GMT
Server:
Content-Length: 2

ho...

絞り込み条件を変える

WEBrick::HTTPResponse#to_s -> String (8.0)

実際にクライアントに送られるデータを文字列として返します。

...列として返します。

require 'webrick'
include WEBrick
res = HTTPResponse.new( { :HTTPVersion => "1.1" } )
res.body = 'hoge'
print res.to_s

#=> 出力結果
HTTP/1.1 200 OK
Connection: Keep-Alive
Date
: Sat, 27 Oct 2007 08:58:49 GMT
Server:
Content-Length: 4

hoge...