字节数组输入流读取操作


和文件的读取操作类似,不同的是构造函数中是用 byte[]来初始化 ByteArrayInputStream

package com.machuang.io.others;

import java.io.BufferedInputStream;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;

public class ByteArray {

    public static void main(String[] args) throws IOException {
        byteArrayRead();

    }

    
    public static void byteArrayRead() throws IOException {
        // 创造字节数组,(从服务器或者其他主机上传来的 byte[])
        String msg = "和文件读取操作一样";        
        byte[] msgBytes = msg.getBytes();    // 待读取的字节数组
        
        InputStream bis = new BufferedInputStream( new ByteArrayInputStream(msgBytes) );
        
        // byteBuf
        byte[] byteBuf = new byte[1024];
        int len = 0;
        
        // 读取操作
        while(-1 != (len = bis.read(byteBuf))) {
            System.out.println(new String(byteBuf, 0, len));
        }
        
        bis.close();
    
    }
    
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM