溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java中的FilterOutputStream 簡(jiǎn)介_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理

發(fā)布時(shí)間:2020-10-02 03:20:22 來(lái)源:腳本之家 閱讀:163 作者:mrr 欄目:編程語(yǔ)言

FilterOutputStream 介紹

FilterOutputStream 的作用是用來(lái)“封裝其它的輸出流,并為它們提供額外的功能”。它主要包括BufferedOutputStream, DataOutputStream和PrintStream。

(01) BufferedOutputStream的作用就是為“輸出流提供緩沖功能”。

(02) DataOutputStream 是用來(lái)裝飾其它輸出流,將DataOutputStream和DataInputStream輸入流配合使用,“允許應(yīng)用程序以與機(jī)器無(wú)關(guān)方式從底層輸入流中讀寫基本 Java 數(shù)據(jù)類型”。

(03) PrintStream 是用來(lái)裝飾其它輸出流。它能為其他輸出流添加了功能,使它們能夠方便地打印各種數(shù)據(jù)值表示形式。 

FilterOutputStream 源碼(基于jdk1.7.40)

package java.io;
public class FilterOutputStream extends OutputStream {
  protected OutputStream out;
  public FilterOutputStream(OutputStream out) {
    this.out = out;
  }
  public void write(int b) throws IOException {
    out.write(b);
  }
  public void write(byte b[]) throws IOException {
    write(b, 0, b.length);
  }
  public void write(byte b[], int off, int len) throws IOException {
    if ((off | len | (b.length - (len + off)) | (off + len)) < 0)
      throw new IndexOutOfBoundsException();
    for (int i = 0 ; i < len ; i++) {
      write(b[off + i]);
    }
  }
  public void flush() throws IOException {
    out.flush();
  }
  public void close() throws IOException {
    try {
     flush();
    } catch (IOException ignored) {
    }
    out.close();
  }
}

以上所述是小編給大家介紹的FilterOutputStream知識(shí),希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI