Java ByteArrayInputStream类

字节数组输入流在内存中创建一个字节数组缓冲区,从输入流读取的数据保存在该字节数组缓冲区中。创建字节数组输入流对象有以下几种方式。

接收字节数组作为参数创建:

  1. ByteArrayInputStream bArray = new ByteArrayInputStream(byte [] a);

另一种创建方式是接收一个字节数组,和两个整形变量 off、len,off表示第一个读取的字节,len表示读取字节的长度。

  1. ByteArrayInputStream bArray = new ByteArrayInputStream(byte []a, int off, int len)

成功创建字节数组输入流对象后,可以参见以下列表中的方法,对流进行读操作或其他操作。

序号方法描述
1public int read()
从此输入流中读取下一个数据字节。
2public int read(byte[] r, int off, int len)
将最多len个数据字节从此输入流读入字节数组。
3public int available()
返回可不发生阻塞地从此输入流读取的字节数。
4public void mark(int read)
设置流中的当前标记位置。
5public long skip(long n)
从此输入流中跳过 n 个输入字节。

实例

下面的例子演示了ByteArrayInputStream 和 ByteArrayOutputStream的使用:

  1. import java.io.*;
  2. public class Test{
  3. public static void main(String args[])throws IOException{
  4. DataInputStream in = new DataInputStream(new FileInputStream("test.txt"));
  5. DataOutputStream out = new DataOutputStream(new FileOutputStream("test1.txt"));
  6. BufferedReader d = new BufferedReader(new InputStreamReader(in));
  7. String count;
  8. while((count = d.readLine()) != null){
  9. String u = count.toUpperCase();
  10. System.out.println(u);
  11. out.writeBytes(u + " ,");
  12. }
  13. d.close();
  14. out.close();
  15. }
  16. }

以上实例编译运行结果如下:

  1. asdfghjkly
  2. Print the content
  3. a s d f g h j k l y
  4. Converting characters to Upper case
  5. A
  6. S
  7. D
  8. F
  9. G
  10. H
  11. J
  12. K
  13. L
  14. Y