- All Superinterfaces:
- DataInput
- All Known Subinterfaces:
- ImageOutputStream
- All Known Implementing Classes:
- FileCacheImageInputStream, FileCacheImageOutputStream, FileImageInputStream, FileImageOutputStream, ImageInputStreamImpl, ImageOutputStreamImpl, MemoryCacheImageInputStream, MemoryCacheImageOutputStream
- See Also:
- Top Examples, Source Code
void close()
throws IOException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void flush()
throws IOException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void flushBefore(long pos)
throws IOException
- See Also:
- IndexOutOfBoundsException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
int getBitOffset()
throws IOException
- See Also:
setBitOffset(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
ByteOrder getByteOrder()
- See Also:
setByteOrder(java.nio.ByteOrder)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
long getFlushedPosition()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
long getStreamPosition()
throws IOException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
boolean isCached()
- See Also:
isCachedFile()
, isCachedMemory()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
boolean isCachedFile()
- See Also:
isCachedMemory()
, isCached()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
boolean isCachedMemory()
- See Also:
isCachedFile()
, isCached()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
long length()
throws IOException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void mark()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
int read()
throws IOException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
int read(byte[] b)
throws IOException
- See Also:
- NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
int read(byte[] b,
int off,
int len)
throws IOException
- See Also:
- IndexOutOfBoundsException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
int readBit()
throws IOException
- See Also:
- EOFException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
long readBits(int numBits)
throws IOException
- See Also:
- EOFException, IllegalArgumentException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
boolean readBoolean()
throws IOException
- See Also:
- EOFException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
byte readByte()
throws IOException
- See Also:
- EOFException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void readBytes(IIOByteBuffer buf,
int len)
throws IOException
- See Also:
- NullPointerException, IndexOutOfBoundsException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
char readChar()
throws IOException
- See Also:
readUnsignedShort()
, EOFException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
double readDouble()
throws IOException
- See Also:
getByteOrder()
, EOFException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
float readFloat()
throws IOException
- See Also:
getByteOrder()
, EOFException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void readFully(byte[] b)
throws IOException
- See Also:
- EOFException, NullPointerException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void readFully(byte[] b,
int off,
int len)
throws IOException
- See Also:
- EOFException, NullPointerException, IndexOutOfBoundsException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void readFully(char[] c,
int off,
int len)
throws IOException
- See Also:
- EOFException, NullPointerException, IndexOutOfBoundsException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void readFully(double[] d,
int off,
int len)
throws IOException
- See Also:
- EOFException, NullPointerException, IndexOutOfBoundsException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void readFully(float[] f,
int off,
int len)
throws IOException
- See Also:
- EOFException, NullPointerException, IndexOutOfBoundsException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void readFully(int[] i,
int off,
int len)
throws IOException
- See Also:
- EOFException, NullPointerException, IndexOutOfBoundsException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void readFully(long[] l,
int off,
int len)
throws IOException
- See Also:
- EOFException, NullPointerException, IndexOutOfBoundsException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void readFully(short[] s,
int off,
int len)
throws IOException
- See Also:
- EOFException, NullPointerException, IndexOutOfBoundsException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
int readInt()
throws IOException
- See Also:
getByteOrder()
, EOFException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
String readLine()
throws IOException
- See Also:
- DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
long readLong()
throws IOException
- See Also:
getByteOrder()
, EOFException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
short readShort()
throws IOException
- See Also:
getByteOrder()
, EOFException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
int readUnsignedByte()
throws IOException
- See Also:
- EOFException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
long readUnsignedInt()
throws IOException
- See Also:
getByteOrder()
, EOFException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
int readUnsignedShort()
throws IOException
- See Also:
getByteOrder()
, EOFException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
String readUTF()
throws IOException
- See Also:
- UTFDataFormatException, EOFException, DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void reset()
throws IOException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void seek(long pos)
throws IOException
- See Also:
- IndexOutOfBoundsException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void setBitOffset(int bitOffset)
throws IOException
- See Also:
getBitOffset()
, IllegalArgumentException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
void setByteOrder(ByteOrder byteOrder)
- See Also:
readBits(int)
, getByteOrder()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
int skipBytes(int n)
throws IOException
- See Also:
- DataInput
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
long skipBytes(long n)
throws IOException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples