|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
javax.imageio.stream
类 FileImageOutputStream
java.lang.Object javax.imageio.stream.ImageInputStreamImpl javax.imageio.stream.ImageOutputStreamImpl javax.imageio.stream.FileImageOutputStream
- 所有已实现的接口:
- DataInput, DataOutput, ImageInputStream, ImageOutputStream
-
public class FileImageOutputStream
- extends ImageOutputStreamImpl
将输出直接写入 File
或 RandomAccessFile
的 ImageOutputStream
的实现。
字段摘要 |
---|
从类 javax.imageio.stream.ImageInputStreamImpl 继承的字段 |
---|
bitOffset, byteOrder, flushedPos, streamPos |
构造方法摘要 | |
---|---|
FileImageOutputStream(File f) 构造一个将向给定 File 进行写入的 FileImageOutputStream 。 |
|
FileImageOutputStream(RandomAccessFile raf) 构造一个向给定 FileImageOutputStream 进行写入的 RandomAccessFile 。 |
方法摘要 | |
---|---|
void |
close() 关闭流。 |
long |
length() 返回 -1L ,指示流的长度未知。 |
int |
read() 从流中读取单个字节,并以整数(0 到 255 之间)形式返回该字节。 |
int |
read(byte[] b, int off, int len) 从流中读取至多 len 个字节,并将其存储到 b 中(从 off 索引处开始)。 |
void |
seek(long pos) 设置当前流位置并将位偏移量重置为 0。 |
void |
write(byte[] b, int off, int len) 将数组 b 中的 len 个字节按顺序写入输出流。 |
void |
write(int b) 将参数 b 的八个低位写入输出流。 |
从类 javax.imageio.stream.ImageOutputStreamImpl 继承的方法 |
---|
flushBits, write, writeBit, writeBits, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeChars, writeDouble, writeDoubles, writeFloat, writeFloats, writeInt, writeInts, writeLong, writeLongs, writeShort, writeShorts, writeUTF |
从类 javax.imageio.stream.ImageInputStreamImpl 继承的方法 |
---|
checkClosed, finalize, flush, flushBefore, getBitOffset, getByteOrder, getFlushedPosition, getStreamPosition, isCached, isCachedFile, isCachedMemory, 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, setBitOffset, setByteOrder, skipBytes, skipBytes |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
从接口 javax.imageio.stream.ImageOutputStream 继承的方法 |
---|
flushBefore |
从接口 javax.imageio.stream.ImageInputStream 继承的方法 |
---|
flush, getBitOffset, getByteOrder, getFlushedPosition, getStreamPosition, isCached, isCachedFile, isCachedMemory, 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, setBitOffset, setByteOrder, skipBytes, skipBytes |
构造方法详细信息 |
---|
FileImageOutputStream
public FileImageOutputStream(File f) throws FileNotFoundException, IOException
-
构造一个将向给定
File
进行写入的FileImageOutputStream
。- 参数:
-
f
- 要写入到的File
。 - 抛出:
-
IllegalArgumentException
- 如果f
为null
。 -
SecurityException
- 如果存在安全管理器,且不允许对文件进行写入访问。 -
FileNotFoundException
- 如果f
不指示常规文件,或者由于任何其他原因不能打开以进行读写。 -
IOException
- 如果发生 I/O 错误。
FileImageOutputStream
public FileImageOutputStream(RandomAccessFile raf)
-
构造一个向给定
FileImageOutputStream
进行写入的RandomAccessFile
。- 参数:
-
raf
- 要写入到的RandomAccessFile
。 - 抛出:
-
IllegalArgumentException
- 如果raf
为null
。
方法详细信息 |
---|
read
public int read() throws IOException
-
从接口
ImageInputStream
复制的描述 -
从流中读取单个字节,并以整数(0 到 255 之间)形式返回该字节。如果到达流末尾,则返回 -1。
在进行读取前,将流中的位偏移量重置为零。
-
- 指定者:
-
接口
ImageInputStream
中的read
- 指定者:
-
类
ImageInputStreamImpl
中的read
-
- 返回:
- 流中的 int 形式的字节值;或者 -1,指示 EOF(文件结束标记)。
- 抛出:
-
IOException
- 如果发生 I/O 错误。
read
public int read(byte[] b, int off, int len) throws IOException
-
从类
ImageInputStreamImpl
复制的描述 -
从流中读取至多
len
个字节,并将其存储到b
中(从off
索引处开始)。如果由于到达流末尾而没有读取任何字节,则返回-1
。在发生读取前,必须将流中的位偏移量重置为零。
子类必须提供此方法的实现。子类实现在退出前应该更新流位置。
-
- 指定者:
-
接口
ImageInputStream
中的read
- 指定者:
-
类
ImageInputStreamImpl
中的read
-
- 参数:
-
b
- 用来接收写入的字节数组。 -
off
-b
中要写入的起始位置。 -
len
- 要读取的最大字节数。 - 返回:
-
实际读取的字节数;或者
-1
,指示 EOF。 - 抛出:
-
IOException
- 如果发生 I/O 错误。
write
public void write(int b) throws IOException
-
从接口
DataOutput
复制的描述 -
将参数
b
的八个低位写入输出流。忽略b
的 24 个高位。 -
- 指定者:
-
接口
DataOutput
中的write
- 指定者:
-
接口
ImageOutputStream
中的write
- 指定者:
-
类
ImageOutputStreamImpl
中的write
-
- 参数:
-
b
- 要写入的字节。 - 抛出:
-
IOException
- 如果发生 I/O 错误。
write
public void write(byte[] b, int off, int len) throws IOException
-
从接口
DataOutput
复制的描述 -
将数组
b
中的len
个字节按顺序写入输出流。如果b
为null
,则抛出NullPointerException
。如果off
为负,或len
为负,抑或off+len
大于数组b
的长度,则抛出IndexOutOfBoundsException
。如果len
为零,则不写入字节。否则,首先写入字节b[off]
,然后写入字节b[off+1]
,依此类推;最后一个写入字节是b[off+len-1]
。 -
- 指定者:
-
接口
DataOutput
中的write
- 指定者:
-
接口
ImageOutputStream
中的write
- 指定者:
-
类
ImageOutputStreamImpl
中的write
-
- 参数:
-
b
- 数据。 -
off
- 数据中的起始偏移量。 -
len
- 要写入的字节数。 - 抛出:
-
IOException
- 如果发生 I/O 错误。
length
public long length()
-
从类
ImageInputStreamImpl
复制的描述 -
返回
-1L
,指示流的长度未知。子类必须重写此方法来提供实际的长度信息。 -
- 指定者:
-
接口
ImageInputStream
中的length
- 覆盖:
-
类
ImageInputStreamImpl
中的length
-
- 返回:
- 指示不知道长度的 -1L。
seek
public void seek(long pos) throws IOException
-
设置当前流位置并将位偏移量重置为 0。查找文件末尾的后面是合法的;仅当在该处执行读取时才抛出
EOFException
。在执行写入前,文件长度不会增加。 -
- 指定者:
-
接口
ImageInputStream
中的seek
- 覆盖:
-
类
ImageInputStreamImpl
中的seek
-
- 参数:
-
pos
- 一个long
,它包含所需文件的指针位置。 - 抛出:
-
IndexOutOfBoundsException
- 如果pos
小于刷新缓存的位置。 -
IOException
- 如果发生任何其他 I/O 错误。