Java ByteArrayInputStream read()方法

java.io.ByteArrayInputStream.read(byte[] b, int off, int len) 用于从输入流的字节数组中读取最多len字节的数据。

1 语法

public int read(byte[] b, int off, int len)

2 参数

b:数据读入此缓冲区

off:从目标数组b开始的偏移量

len:读取的最大字节数

3 返回值

读入缓冲区的字节数。如果流已到达末尾,则返回-1。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.ByteArrayInputStream.read(byte[] b, int off, int len)方法的例子
 */
import java.io.ByteArrayInputStream;
import java.io.IOException;

public class Demo {
    public static void main(String[] args) throws IOException {
        byte[] buf = {65, 66, 67, 68, 69};
        ByteArrayInputStream bais = null;

        try {
            // create new byte array input stream
            bais = new ByteArrayInputStream(buf);

            // create buffer
            byte[] b = new byte[4];
            int num = bais.read(b, 2, 2);

            // number of bytes read
            System.out.println("Bytes read: "+num);

            // for each byte in a buffer
            for (byte s :b) {

                // covert byte to char
                char c = (char)s;

                // prints byte
                System.out.print(s);

                if(s == 0)

                    // if byte is 0
                    System.out.println(": Null");
                else

                    // if byte is not 0
                    System.out.println(": "+c);
            }

        } catch(Exception e) {
            // if I/O error occurs
            e.printStackTrace();
        } finally {
            if(bais!=null)
                bais.close();
        }
    }
}

输出结果为:

Bytes read: 2
0: Null
0: Null
65: A
66: B

热门文章

优秀文章