java.io源碼解析(四)--字節(jié)數(shù)組(ByteArrayInputStream,ByteArrayOutputStream)字符數(shù)組(CharArrayReader混聊,CharArrayWri...

聲明:本系列只供本人自學(xué)使用弹谁,勿噴。

前面我們已經(jīng)研究了文件流句喜、對(duì)象流预愤,但是前提呢,是需要提供文件咳胃、對(duì)象才能繼續(xù)進(jìn)行流的操作植康,那假如目前有一個(gè)字節(jié)數(shù)組{0x61, 0x62, 0x63, 0x64, 0x65, 0x66}需要進(jìn)行傳輸或者存儲(chǔ)到文件,首先得將其轉(zhuǎn)換為二進(jìn)制流展懈,這時(shí)就用到了輕量的ByteArrayInputStream和ByteArrayOutputStream销睁。假如需要操作的是字符數(shù)組{'a','b','c','d','e','f'},則要用到CharArrayReader和CharArrayWriter存崖。

一冻记、ByteArrayInputStream

  • 內(nèi)部有緩沖數(shù)組
  • 內(nèi)部有計(jì)數(shù)器追蹤下一個(gè)字節(jié)
  • 關(guān)閉ByteArrayInputStream后仍然可以對(duì)其進(jìn)行操作。
public class ByteArrayInputStream extends InputStream {
    protected byte buf[];
    protected int pos;
    protected int mark = 0;
    protected int count;

    // 傳入的字節(jié)數(shù)組作為緩沖數(shù)組
    public ByteArrayInputStream(byte buf[]) {
        this.buf = buf;
        this.pos = 0;
        this.count = buf.length;
    }

    public ByteArrayInputStream(byte buf[], int offset, int length)
}
  • 核心方法
// 返回下一個(gè)字節(jié)的值来惧,沒有則-1
public synchronized int read()

// copy緩沖區(qū)數(shù)組buf的未讀值到byte b[]中
public synchronized int read(byte b[], int off, int len)
  • 其他方法
public synchronized long skip(long n)
public synchronized int available() 
public boolean markSupported()
public void mark(int readAheadLimit)
public synchronized void reset()

demo

簡(jiǎn)單操作

        // byte[] byteArray="abcdef".getBytes();
        byte[] byteArray={0x61, 0x62, 0x63, 0x64, 0x65, 0x66};
        ByteArrayInputStream byteArrayInputStream=new ByteArrayInputStream(byteArray);
        int b;
        while ((b=byteArrayInputStream.read())!=-1) {
            System.out.println(b);
        }

實(shí)現(xiàn)將Base64圖片保存到文件

注:http://imgbase64.duoshitong.com/上傳圖片生成Base64編碼冗栗,替換代碼第一行content

        String content="data:image/jpeg;base64,/9j/4AAQSkZJRg...省略很長(zhǎng)很長(zhǎng)..bP6oP/2Q==";
        Pattern pattern= Pattern.compile("data:image/(.*?);base64,");
        Matcher matcher=pattern.matcher(content);
        String type="";
        if(matcher.find()){
            type=matcher.group(1);
        }else{
            return;
        }
        String base64=content.replaceAll(matcher.group(0),"");
        byte[] buffer=new BASE64Decoder().decodeBuffer(base64);
        ByteArrayInputStream bis=new ByteArrayInputStream(buffer);
        // 以下全部代碼可以直接用 Files.copy(bis,Paths.get("D:\\test."+type))實(shí)現(xiàn)
        OutputStream outputStream= Files.newOutputStream(Paths.get("D:\\test."+type));
        byte[] bytes=new byte[1024];
        int len=0;
        while ((len=bis.read(bytes))!=-1){
            outputStream.write(bytes,0,len);
        }
        outputStream.close();
        bis.close();

二、ByteArrayOutputStream

public class ByteArrayOutputStream extends OutputStream {
    protected byte buf[];
    protected int count;
    
    public ByteArrayOutputStream() {
        this(32);
    }

    public ByteArrayOutputStream(int size){
        buf = new byte[size];
    }

  • 核心方法
// 往buf中寫入一個(gè)字節(jié)
public synchronized void write(int b)
// copy入?yún)?byte b[]到緩沖區(qū)數(shù)組buf
public synchronized void write(byte b[], int off, int len)

// 將緩沖區(qū)數(shù)組buf寫入其他輸出流
public synchronized void writeTo(OutputStream out) throws IOException
// 返回buf
public synchronized byte toByteArray()[] 

public synchronized int size()
public synchronized String toString()

demo

簡(jiǎn)單操作

byte[] byteArray={0x61, 0x62, 0x63, 0x64, 0x65, 0x66};
ByteArrayOutputStream baos=new ByteArrayOutputStream();
baos.write(byteArray);
baos.write(0x67);
baos.writeTo(Files.newOutputStream(Paths.get("D:\\test.txt")));

CharArrayReader和CharArrayWriter源碼過于相似供搀,只是數(shù)組是char型隅居,自行查看。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末葛虐,一起剝皮案震驚了整個(gè)濱河市军浆,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌挡闰,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,265評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異摄悯,居然都是意外死亡赞季,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門奢驯,熙熙樓的掌柜王于貴愁眉苦臉地迎上來申钩,“玉大人,你說我怎么就攤上這事瘪阁∪銮玻” “怎么了?”我有些...
    開封第一講書人閱讀 156,852評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵管跺,是天一觀的道長(zhǎng)义黎。 經(jīng)常有香客問我,道長(zhǎng)豁跑,這世上最難降的妖魔是什么廉涕? 我笑而不...
    開封第一講書人閱讀 56,408評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮艇拍,結(jié)果婚禮上狐蜕,老公的妹妹穿的比我還像新娘。我一直安慰自己卸夕,他們只是感情好层释,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評(píng)論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著快集,像睡著了一般贡羔。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上碍讨,一...
    開封第一講書人閱讀 49,772評(píng)論 1 290
  • 那天治力,我揣著相機(jī)與錄音,去河邊找鬼勃黍。 笑死宵统,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的覆获。 我是一名探鬼主播马澈,決...
    沈念sama閱讀 38,921評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼弄息!你這毒婦竟也來了痊班?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,688評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤摹量,失蹤者是張志新(化名)和其女友劉穎涤伐,沒想到半個(gè)月后馒胆,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,130評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡凝果,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評(píng)論 2 325
  • 正文 我和宋清朗相戀三年祝迂,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片器净。...
    茶點(diǎn)故事閱讀 38,617評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡型雳,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出山害,到底是詐尸還是另有隱情纠俭,我是刑警寧澤,帶...
    沈念sama閱讀 34,276評(píng)論 4 329
  • 正文 年R本政府宣布浪慌,位于F島的核電站冤荆,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏眷射。R本人自食惡果不足惜匙赞,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望妖碉。 院中可真熱鬧涌庭,春花似錦、人聲如沸欧宜。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽冗茸。三九已至席镀,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間夏漱,已是汗流浹背豪诲。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評(píng)論 1 265
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留挂绰,地道東北人屎篱。 一個(gè)月前我還...
    沈念sama閱讀 46,315評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像葵蒂,于是被迫代替她去往敵國(guó)和親交播。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評(píng)論 2 348