るりまサーチ

最速Rubyリファレンスマニュアル検索!
55件ヒット [1-55件を表示] (0.023秒)

別のキーワード

  1. bigdecimal mode
  2. openssl fips_mode=
  3. bigdecimal round_mode
  4. readline vi_editing_mode
  5. readline emacs_editing_mode

ライブラリ

クラス

キーワード

検索結果

IO.binread(path, length = nil, offset = 0) -> String | nil (18126.0)

path で指定したファイルを open し、offset の所まで seek し、 length バイト読み込みます。

...くときの mode は "rb:ASCII-8BIT" です。

//emlist[例][ruby]{
IO.write("testfile", "This is line one\nThis is line two\nThis is line three\nAnd so on...\n")
IO.binread("testfile") # => "This is line one\nThis is line two\nThis is line three\nAnd so on...\n"
IO.binread("testfile", 2...
...0) # => "This is line one\nThi"
IO.binread("testfile", 20, 10) # => "ne one\nThis is line "
//}

@see IO.read...

IO.binwrite(path, string, offset=nil) -> Integer (19.0)

path で指定されるファイルを開き、string を書き込み、 閉じます。

...path で指定されるファイルを開き、string を書き込み、
閉じます。

ファイルを開くときの mode が "rb:ASCII-8BIT" で、バイナリモードが有効
である点以外は IO.write と同じです。

Kernel.#open と同様 path の先頭が "|" ならば、"|" に...
...00 00 00 0d 49 48 44 52

# binwriteを使用した場合: どの環境でも正しく保存できる。
IO.binwrite('white.binmode.png', png)
puts IO.binread('white.binmode.png', 16).unpack('C*').map {|c| '%02x' % c }.join(' ')
# => 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52

# binwriteを使...
....write('white.txtmode.png', png)
puts IO.binread('white.txtmode.png', 16).unpack('C*').map {|c| '%02x' % c }.join(' ')
# => 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 (Linux/Macの場合
# => 89 50 4e 47 0d 0d 0a 1a 0d 0a 00 00 00 0d 49 48 (Windowsの場合
//}

@see c:IO#io_binmode, IO.write...

IO.read(path, **opt) -> String | nil (13.0)

path で指定されたファイルを offset 位置から length バイト分読み込んで返します。

...込んだ文字列のエンコーディングを指定します。
読み込む長さを指定した場合はこれは無視されます。

: :mode

IO.open のモードを指定します。
"r" で始まる文字列である必要があります。

: :open_args

IO.open に渡され...
...数を配列で指定します。

これらの他、 :external_encoding など
IO.open のオプション引数が指定できます。

@see IO.binread

例:

IO.read(empty_file) #=> ""
IO.read(empty_file, 1) #=> nil
IO.read(one_byte_file, 0, 10) #=> ""
IO.read(one_b...

IO.read(path, length = nil, **opt) -> String | nil (13.0)

path で指定されたファイルを offset 位置から length バイト分読み込んで返します。

...込んだ文字列のエンコーディングを指定します。
読み込む長さを指定した場合はこれは無視されます。

: :mode

IO.open のモードを指定します。
"r" で始まる文字列である必要があります。

: :open_args

IO.open に渡され...
...数を配列で指定します。

これらの他、 :external_encoding など
IO.open のオプション引数が指定できます。

@see IO.binread

例:

IO.read(empty_file) #=> ""
IO.read(empty_file, 1) #=> nil
IO.read(one_byte_file, 0, 10) #=> ""
IO.read(one_b...

IO.read(path, length = nil, offset = 0, **opt) -> String | nil (13.0)

path で指定されたファイルを offset 位置から length バイト分読み込んで返します。

...込んだ文字列のエンコーディングを指定します。
読み込む長さを指定した場合はこれは無視されます。

: :mode

IO.open のモードを指定します。
"r" で始まる文字列である必要があります。

: :open_args

IO.open に渡され...
...数を配列で指定します。

これらの他、 :external_encoding など
IO.open のオプション引数が指定できます。

@see IO.binread

例:

IO.read(empty_file) #=> ""
IO.read(empty_file, 1) #=> nil
IO.read(one_byte_file, 0, 10) #=> ""
IO.read(one_b...

絞り込み条件を変える