JavaTM 2 Platform
Standard Ed. 6

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

將輸出直接寫入 FileRandomAccessFileImageOutputStream 的實作。


欄位摘要
 
從類別 javax.imageio.stream.ImageInputStreamImpl 繼承的欄位
bitOffset, byteOrder, flushedPos, streamPos
 
建構子摘要
FileImageOutputStream(File f)
          建構一個將向給定 File 進行寫入的 FileImageOutputStream
FileImageOutputStream(RandomAccessFile raf)
          建構一個向給定 FileImageOutputStream 進行寫入的 RandomAccessFile
 
方法摘要
 void close()
          關閉串流。
protected  void finalize()
          在垃圾回收前結束此物件。
 long length()
          返回 -1L,指示串流的長度未知。
 int read()
          從串流中讀取單個位元組,並以 int(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)
          將位元組序列寫入到串流中的當前位置。
 void write(int 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, 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 - 如果 fnull
SecurityException - 如果存在安全管理器,且不允許對檔案進行寫入存取。
FileNotFoundException - 如果 f 不指示常規檔案,或者由於任何其他原因不能打開以進行讀寫。
IOException - 如果發生 I/O 錯誤。

FileImageOutputStream

public FileImageOutputStream(RandomAccessFile raf)
建構一個向給定 FileImageOutputStream 進行寫入的 RandomAccessFile

參數:
raf - 要寫入到的 RandomAccessFile
拋出:
IllegalArgumentException - 如果 rafnull
方法詳細資訊

read

public int read()
         throws IOException
從類別 ImageInputStreamImpl 複製的描述
從串流中讀取單個位元組,並以 int(0 到 255 之間)形式返回該位元組。 如果到達 EOF,則返回 -1

子類別必須提供此方法的實作。子類別實作在退出前應該更新串流位置。

在發生讀取前,串流中的位偏移量必須被重置為 0。

指定者:
介面 ImageInputStream 中的 read
指定者:
類別 ImageInputStreamImpl 中的 read
返回:
串流中下一個位元組的值;如果到達 EOF,則返回 -1
拋出:
IOException - 如果串流已經被關閉。

read

public int read(byte[] b,
                int off,
                int len)
         throws IOException
從類別 ImageInputStreamImpl 複製的描述
從串流中讀取至多 len 個位元組,並將其存儲到 b 中(從 off 索引處開始)。如果由於到達串流末尾而沒有讀取任何位元組,則返回 -1

在發生讀取前,串流中的位偏移量必須被重置為 0。

子類別必須提供此方法的實作。子類別實作在退出前應該更新串流位置。

指定者:
介面 ImageInputStream 中的 read
指定者:
類別 ImageInputStreamImpl 中的 read
參數:
b - 用來接收寫入的位元組陣列。
off - b 中要寫入的起始位置。
len - 要讀取的最大位元組數。
返回:
實際讀取的位元組數;或者 -1,指示 EOF。
拋出:
IOException - 如果發生 I/O 錯誤。

write

public void write(int b)
           throws IOException
從介面 ImageOutputStream 複製的描述
將單個位元組寫入到串流中的當前位置。b 的 24 個高位將被忽略。

如果串流中的位偏移量不為零,則首先將當前位元組的余項用 0 填充並將其寫出。寫出後位偏移量將為 0。實作方可使用 ImageOutputStreamImplflushBits 方法來保證這一點。

指定者:
介面 DataOutput 中的 write
指定者:
介面 ImageOutputStream 中的 write
指定者:
類別 ImageOutputStreamImpl 中的 write
參數:
b - 一個 int,其低 8 位將被寫入。
拋出:
IOException - 如果發生 I/O 錯誤。

write

public void write(byte[] b,
                  int off,
                  int len)
           throws IOException
從介面 ImageOutputStream 複製的描述
將位元組序列寫入到串流中的當前位置。如果 len 為 0,則不寫入任何位元組。首先寫入位元組 b[off],然後寫入位元組 b[off + 1],依此類別推。

如果串流中的位偏移量不為零,則首先將當前位元組的余項用 0 填充並將其寫出。寫出後位偏移量將為 0。實作方可使用 ImageOutputStreamImplflushBits 方法來保證這一點。

指定者:
介面 DataOutput 中的 write
指定者:
介面 ImageOutputStream 中的 write
指定者:
類別 ImageOutputStreamImpl 中的 write
參數:
b - 要寫入的 byte 陣列。
off - 資料中的初始偏移量。
len - 要寫入的 byte 數。
拋出:
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 錯誤。

close

public void close()
           throws IOException
從介面 ImageInputStream 複製的描述
關閉串流。試圖存取已經關閉的串流將導致 IOException 或錯誤行為。調用此方法可允許實作此介面的類別釋放與串流關聯的資源,如記憶體、磁碟空間或檔案描述符。

指定者:
介面 ImageInputStream 中的 close
覆寫:
類別 ImageInputStreamImpl 中的 close
拋出:
IOException - 如果發生 I/O 錯誤。

finalize

protected void finalize()
                 throws Throwable
在垃圾回收前結束此物件。調用 close 方法來關閉所有開啟的輸入源。不應該從應用程序程式碼調用此方法。

覆寫:
類別 ImageInputStreamImpl 中的 finalize
拋出:
Throwable - 如果在父級類別終止過程中發生錯誤。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only