亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-06-25 09:29:42 來源:網絡 閱讀:236 作者:wx5d21d5e6e5ab1 欄目:編程語言

*裝飾模式

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

處理流裝飾字節流輸入:

    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();**  //關閉處理流,會自動關閉字節流
            }
        }catch(IOException e)
        {
            e.printStackTrace();
        }

    }

處理流裝飾字節流輸出:

    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**)  //關閉處理流會自動關閉字節流
            {
                os.close();
            }
        }catch(IOException e)
        {
            e.printStackTrace();
        }   
    }
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

车险| 神农架林区| 商丘市| 蕉岭县| 剑河县| 平果县| 威信县| 信阳市| 瓦房店市| 高雄县| 隆回县| 明溪县| 同德县| 肇东市| 武城县| 蕲春县| 岑巩县| 雅江县| 玛曲县| 吉林省| 龙井市| 汶川县| 冕宁县| 资兴市| 宁波市| 彰化县| 兴安县| 亳州市| 宜君县| 上犹县| 和硕县| 年辖:市辖区| 玉溪市| 涡阳县| 乌兰县| 汝阳县| 依兰县| 黄石市| 延长县| 清苑县| 来宾市|