溫馨提示×

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

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

java _io_字節(jié)緩沖流(裝飾器)輸入、輸出

發(fā)布時(shí)間:2020-06-25 09:29:42 來源:網(wǎng)絡(luò) 閱讀:236 作者:wx5d21d5e6e5ab1 欄目:編程語言

*裝飾模式

  • 字節(jié)緩沖流
  • BufferedInputStream bis=new BufferedInputStream(inputStream is)
  • BufferedOutputStream bos=new BufferedOutputStream(OutputStream os)
  • 最底層一定是節(jié)點(diǎn)流
  • 只需要釋放最外層的處理流,若要手動(dòng)關(guān)閉遵循從里到外的順序關(guān)閉(從字節(jié)流到處理流)
  • 默認(rèn)為8k,可以改變
    //參數(shù)是字節(jié)輸入流對(duì)象
    InputStream is =new BufferedInputStream(new InputStream(f));
    OutputStream os=new BufferedOutputStream(new OutputStream(f));

處理流裝飾字節(jié)流輸入:

    File f =new File("C:\\Users\\10853\\eclipse-workspace\\hell\\src\\hell\\abc");

    InputStream is =null;
    try {
        **is=new BufferedInputStream(new FileInputStream(f));**

        byte[] flush =new byte[1024];
        int len=-1;
        while((len=is.read(flush))!=-1)
        {
            is.read(flush,0,len);
        }
    }catch(FileNotFoundException e)
    {
        e.printStackTrace();
    }catch(IOException e)
    {
        e.printStackTrace();
    }finally {

        try {

            if(null!=is)
            {
                i**s.close();**  //關(guān)閉處理流,會(huì)自動(dòng)關(guān)閉字節(jié)流
            }
        }catch(IOException e)
        {
            e.printStackTrace();
        }

    }

處理流裝飾字節(jié)流輸出:

    File f=new File("D:d/c.txt");

    OutputStream os =null;
    try
    {
    **  os=new BufferedOutputStream(new FileOutputStream(f));**
        String s="addaa";
        byte[] datas=s.getBytes();
        os.write(datas,0,datas.length);
        os.flush();

    }catch(FileNotFoundException e)
    {
        e.printStackTrace();
    }catch(IOException e)
    {
        e.printStackTrace();
    }finally {
        try {
            if(**null!=os**)  //關(guān)閉處理流會(huì)自動(dòng)關(guān)閉字節(jié)流
            {
                os.close();
            }
        }catch(IOException e)
        {
            e.printStackTrace();
        }   
    }
向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