Java SequenceInputStream read()方法

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

1 语法

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

2 参数

b:读取数据的缓冲区。

off:数组b中写入数据的起始偏移量。

len:读取的最大字节数。

3 返回值

返回读取的字节数。

4 示例 

package com.yiidian;

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

public class Demo {
    public static void main(String[] args) {

        // create two  new strings with 5 characters each
        String s1 = "Hello";
        String s2 = "World";

        // create 2 input streams
        byte[] b1 = s1.getBytes();
        byte[] b2 = s2.getBytes();
        ByteArrayInputStream is1 = new ByteArrayInputStream(b1);
        ByteArrayInputStream is2 = new ByteArrayInputStream(b2);

        // create a new Sequence Input Stream
        SequenceInputStream sis = new SequenceInputStream(is1, is2);

        // create a new byte array
        byte arr[] = {'1', '2', '3', '4'};

        try {
            // read 3 chars and print the number of chars read
            System.out.print("" + sis.read(arr, 0, 3));

            // change line
            System.out.println();

            // close the streams
            sis.close();

        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}

输出结果为:

3

热门文章

优秀文章