public class MemoryCacheImageOutputStream extends ImageOutputStreamImpl
OutputStream
に書き込む ImageOutputStream
の実装です。メモリーバッファーには、少なくとも破棄位置と現在の書き込み位置との間のデータがキャッシュされます。OutputStream
を使用するのはコンストラクタのみなので、このクラスは読み込み、変更、または書き込み操作に使用できない場合があります。読み込みは、キャッシュに書き込み済みでまだフラッシュされていないストリーム部分についてのみ行うことができます。bitOffset, byteOrder, flushedPos, streamPos
コンストラクタと説明 |
---|
MemoryCacheImageOutputStream(OutputStream stream)
指定された
OutputStream に書き込む MemoryCacheImageOutputStream を構築します。 |
修飾子と型 | メソッドと説明 |
---|---|
void |
close()
この
MemoryCacheImageOutputStream を閉じます。 |
void |
flushBefore(long pos)
指示された位置より前の初期のストリーム部分を破棄します。
|
boolean |
isCached()
後方へのシークを可能にするために、この
ImageOutputStream がデータをキャッシュするため、true が返されます。 |
boolean |
isCachedFile()
この
ImageOutputStream はファイルキャッシュを維持しないため、false が返されます。 |
boolean |
isCachedMemory()
この
ImageOutputStream はメインメモリーキャッシュを維持するため、true が返されます。 |
long |
length()
ストリームが未知の長さであることを示す
-1L を返します。 |
int |
read()
ストリームから 1 バイトを読み込み、それを 0 から 255 までの
int として返します。 |
int |
read(byte[] b, int off, int len)
ストリームから最大
len バイトを読み込み、b にインデックス off から格納します。 |
void |
write(byte[] b, int off, int len)
バイトのシーケンスをストリームの現在位置に書き込みます。
|
void |
write(int b)
ストリームの現在の位置に 1 バイト書き込みます。
|
flushBits, write, writeBit, writeBits, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeChars, writeDouble, writeDoubles, writeFloat, writeFloats, writeInt, writeInts, writeLong, writeLongs, writeShort, writeShorts, writeUTF
checkClosed, finalize, flush, getBitOffset, getByteOrder, getFlushedPosition, getStreamPosition, mark, read, readBit, readBits, readBoolean, readByte, readBytes, readChar, readDouble, readFloat, readFully, readFully, readFully, readFully, readFully, readFully, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedInt, readUnsignedShort, readUTF, reset, seek, setBitOffset, setByteOrder, skipBytes, skipBytes
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
flush, getBitOffset, getByteOrder, getFlushedPosition, getStreamPosition, mark, read, readBit, readBits, readBoolean, readByte, readBytes, readChar, readDouble, readFloat, readFully, readFully, readFully, readFully, readFully, readFully, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedInt, readUnsignedShort, readUTF, reset, seek, setBitOffset, setByteOrder, skipBytes, skipBytes
public MemoryCacheImageOutputStream(OutputStream stream)
OutputStream
に書き込む MemoryCacheImageOutputStream
を構築します。stream
- 書き込み先の OutputStream
。IllegalArgumentException
- stream
が null
の場合。public int read() throws IOException
ImageInputStreamImpl
int
として返します。EOF に達すると -1
を返します。
サブクラスでこのメソッドを実装する必要があります。サブクラス実装で終了する前にストリーム位置を更新します。
ストリーム内のビットオフセットは、読み込みを行う前に 0 にリセットする必要があります。
read
、インタフェース: ImageInputStream
read
、クラス: ImageInputStreamImpl
-1
。IOException
- ストリームが閉じられている場合。public int read(byte[] b, int off, int len) throws IOException
ImageInputStreamImpl
len
バイトを読み込み、b
にインデックス off
から格納します。ストリームの終わりに達したためにバイトを読み込めない場合は、-1
を返します。
ストリーム内のビットオフセットは、読み込みを行う前に 0 にリセットする必要があります。
サブクラスでこのメソッドを実装する必要があります。サブクラス実装で終了する前にストリーム位置を更新します。
read
、インタフェース: ImageInputStream
read
、クラス: ImageInputStreamImpl
b
- 書き込まれるバイト配列。off
- 書き込み先の b
内の開始位置。len
- 読み込む最大バイト数。-1
。IOException
- 入出力エラーが発生した場合。public void write(int b) throws IOException
ImageOutputStream
b
の上位 24 ビットは無視されます。
ストリーム内のビットオフセットがゼロでない場合、現在のバイトの残りは 0 でパディングされ、最初に書き込まれます。書き込み後は、ビットオフセットは 0 です。実装側は、
の ImageOutputStreamImpl
メソッドを使用してこれを保証できます。flushBits
write
、インタフェース: DataOutput
write
、インタフェース: ImageOutputStream
write
、クラス: ImageOutputStreamImpl
b
- 下位 8 ビットが書き込まれる int
。IOException
- 入出力エラーが発生した場合。public void write(byte[] b, int off, int len) throws IOException
ImageOutputStream
len
が 0 の場合、何も書き込みません。バイト b[off]
を最初に書き込み、次にバイト b[off + 1]
を書き込む、という具合になります。
ストリーム内のビットオフセットがゼロでない場合、現在のバイトの残りは 0 でパディングされ、最初に書き込まれます。書き込み後は、ビットオフセットは 0 です。実装側は、
の ImageOutputStreamImpl
メソッドを使用してこれを保証できます。flushBits
write
、インタフェース: DataOutput
write
、インタフェース: ImageOutputStream
write
、クラス: ImageOutputStreamImpl
b
- 書き込まれる byte
配列。off
- データの開始オフセット。len
- 書き込む byte
数。IOException
- 入出力エラーが発生した場合。public long length()
ImageInputStreamImpl
-1L
を返します。サブクラスでこのメソッドをオーバーライドして、実際の長さの情報を指定する必要があります。length
、インタフェース: ImageInputStream
length
、クラス: ImageInputStreamImpl
public boolean isCached()
ImageOutputStream
がデータをキャッシュするため、true
が返されます。isCached
、インタフェース: ImageInputStream
isCached
、クラス: ImageInputStreamImpl
true
.isCachedMemory()
, isCachedFile()
public boolean isCachedFile()
ImageOutputStream
はファイルキャッシュを維持しないため、false
が返されます。isCachedFile
、インタフェース: ImageInputStream
isCachedFile
、クラス: ImageInputStreamImpl
false
.isCached()
, isCachedMemory()
public boolean isCachedMemory()
ImageOutputStream
はメインメモリーキャッシュを維持するため、true
が返されます。isCachedMemory
、インタフェース: ImageInputStream
isCachedMemory
、クラス: ImageInputStreamImpl
true
.isCached()
, isCachedFile()
public void close() throws IOException
MemoryCacheImageOutputStream
を閉じます。保留中のデータはすべて出力にフラッシュされ、キャッシュは解放されます。出力先 OutputStream
は閉じられません。close
、インタフェース: Closeable
close
、インタフェース: AutoCloseable
close
、インタフェース: ImageInputStream
close
、クラス: ImageInputStreamImpl
IOException
- 入出力エラーが発生した場合。public void flushBefore(long pos) throws IOException
ImageInputStream
IndexOutOfBoundsException
がスローされます。
flushBefore
を呼び出すと、このインタフェースを実装するクラスが、ストリームからデータを格納するのに使用するメモリーやディスクスペースなどのリソースを解放できます。
flushBefore
、インタフェース: ImageInputStream
flushBefore
、インタフェース: ImageOutputStream
flushBefore
、クラス: ImageInputStreamImpl
pos
- フラッシュされるストリーム接頭辞の長さを示す long
。IOException
- 入出力エラーが発生した場合。 バグまたは機能を送信
詳細な API リファレンスおよび開発者ドキュメントについては、Java SE のドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.