当前位置:   article > 正文

Java基础学习总结:IO之(四)缓冲流、内存流、标准输入输出流_java 文件流 缓冲区 buf 多大合适

java 文件流 缓冲区 buf 多大合适

一、缓冲流

1、分类

分类:字节缓冲流 和 字符缓冲流。

字节缓冲流:字节输入缓冲流:BufferedInputStream、字节输出缓冲流:BufferedOutputStream

字符缓冲流:字符输入缓冲流:BufferedReader、字符输出缓冲流:BufferedWriter

2、字节缓冲流

字节缓冲流包括字节输入缓冲流 BufferedInputStream 和 字节输出缓冲流 BufferedOutputStream。

(1)BufferedInputStream

继承关系:

  1. java.lang.Object
  2. |____java.io.InputStream
  3. |____java.io.FilterInputStream
  4. |____java.io.BufferedInputStream

类声明:

  1. public class BufferedInputStream extends FilterInputStream {
  2. private static int DEFAULT_BUFFER_SIZE = 8192;
  3. private static int MAX_BUFFER_SIZE = Integer.MAX_VALUE - 8;
  4. protected volatile byte buf[];
  5. }

由上述代码可以看出:

  1. BufferedInputStream 中缓冲区使用数组来实现;
  2. 缓冲区默认大小为 8192 (即8KB);
  3. 最大缓冲区大小为 Integer 类型所能存储的最大值减 8;

构造方法:

  1. public BufferedInputStream(InputStream in) {
  2. this(in, DEFAULT_BUFFER_SIZE);
  3. }
  4. public BufferedInputStream(InputStream in, int size) {
  5. super(in);
  6. if (size <= 0) {
  7. throw new IllegalArgumentException("Buffer size <= 0");
  8. }
  9. buf = new byte[size];
  10. }

  BufferedInputStream 有两个构造方法,一个使用默认的缓冲区大小,一个根据传进来的参数 size 设置缓冲区大小。

 简单使用:

  1. //字节流
  2. FileInputStream fis = new FileInputStream("C:\\suxing\\test_1.txt");
  3. //字节输入缓冲流
  4. BufferedInputStream bis = new BufferedInputStream(fis);
  5. //程序缓冲区,注意与BufferedInputStream类中的缓冲区区分开
  6. byte[] buf = new byte[1024*4];
  7. int len = -1;
  8. while ((len = bis.read(buf))!=-1){
  9. String str = new String(buf,0,len);
  10. System.out.println(str);
  11. }
  12. //关闭流
  13. bis.close();

(2)BufferedOutputStream

继承关系:

  1. java.lang.Object
  2. |____java.io.OutputStream
  3. |____java.io.FilterOutputStream
  4. |____java.io.BufferedOutputStream

 类声明:

  1. public class BufferedOutputStream extends FilterOutputStream {
  2. protected byte buf[];
  3. }
  1.  BufferedOutputStream,内部也同样维护着一个数组作为缓冲区。

构造方法:

  1. public BufferedOutputStream(OutputStream out) {
  2. this(out, 8192);
  3. }
  4. public BufferedOutputStream(OutputStream out, int size) {
  5. super(out);
  6. if (size <= 0) {
  7. throw new IllegalArgumentException("Buffer size <= 0");
  8. }
  9. buf = new byte[size];
  10. }

 BufferedOutputStream 有两个构造方法,一个使用默认的缓冲区大小,一个根据传进来的参数 size 设置缓冲区大小。

简单使用:

  1. //字节流
  2. FileOutputStream fos = new FileOutputStream("C:\\suxing\\test_2.txt");
  3. //字节输出缓冲流
  4. BufferedOutputStream bos = new BufferedOutputStream(fos);
  5. String data = "好好学习,天天向上。\r\n";
  6. for (int i = 0;i<10;i++){
  7. bos.write(data.getBytes("utf-8"));
  8. }
  9. //刷新缓冲区
  10. bos.flush();
  11. //关闭流
  12. bos.close();

3、字符缓冲流

字符缓冲流包括字符输入缓冲流 BufferedReader 和 字符输出缓冲流 BufferedWriter。

(1)BufferedReader

继承关系:

  1. java.lang.Object
  2. |____java.io.Reader
  3. |____java.io.BufferedReader

类声明:

  1. public class BufferedReader extends Reader {
  2. private char cb[];
  3. private static int defaultCharBufferSize = 8192;
  4. private static int defaultExpectedLineLength = 80;
  5. }

由上述代码可以看出:

  • BufferedReader 使用字符数组作为缓冲区;
  • 缓冲区默认大小为 8192;
  • 默认行的长度为 80;

构造方法:

  1. public BufferedReader(Reader in, int sz) {
  2. super(in);
  3. if (sz <= 0)
  4. throw new IllegalArgumentException("Buffer size <= 0");
  5. this.in = in;
  6. cb = new char[sz];
  7. nextChar = nChars = 0;
  8. }
  9. public BufferedReader(Reader in) {
  10. this(in, defaultCharBufferSize);
  11. }

 BufferedReader 有两个构造方法,一个使用默认的缓冲区大小,一个根据传进来的参数 size 设置缓冲区大小,当传入的数值小于等于0时,会抛出IllegalArgumentException异常。

简单使用:

每次读取一个缓冲区:

  1. FileReader fr = new FileReader("C:\\suxing\\test_2.txt");
  2. //字符缓冲输入流
  3. BufferedReader br = new BufferedReader(fr);
  4. //程序自己的缓冲区
  5. char[] buf = new char[1024];
  6. int len = -1;
  7. String data = null;
  8. while ((len = br.read(buf))!=-1){
  9. data = new String(buf,0,len);
  10. System.out.println(data);
  11. }
  12. //关闭流
  13. br.close();

 按行读取文件内容:

  1. FileReader fr = new FileReader("C:\\suxing\\test_2.txt");
  2. //字符缓冲输入流
  3. BufferedReader br = new BufferedReader(fr);
  4. //按行读取全部内容
  5. String line = null;
  6. while ((line = br.readLine())!=null){
  7. System.out.println(line);
  8. }
  9. //关闭流
  10. br.close();

二、内存流

1、分类

内存流有两个:

ByteArrayInputStream:字节数组输入流,用于将字节数组转化成流。

ByteArrayOutoutStream:捕获内存缓冲区中的数据,转化成字节数组。

2、使用

(1)ByteArrayInputStream

继承关系:

  1. java.lang.Object
  2. |____java.io.InputStream
  3. |____java.io.ByteArrayInputStream

类声明:

  1. public class ByteArrayInputStream extends InputStream {
  2. protected byte buf[];
  3. }

ByteArrayInputStream 类中维护着一个字节数组用于接受构造方法转入的待转化为流的字节数组中的数据。

构造方法:

  1. public ByteArrayInputStream(byte buf[]) {
  2. this.buf = buf;
  3. this.pos = 0;
  4. this.count = buf.length;
  5. }
  6. public ByteArrayInputStream(byte buf[], int offset, int length) {
  7. this.buf = buf;
  8. this.pos = offset;
  9. this.count = Math.min(offset + length, buf.length);
  10. this.mark = offset;
  11. }

 ByteArrayInputStream 有两个构造方法,一个传入准备转化成流字节数组,另一个传入准备转化成流的字节数组,和数组的起始位置以及数据的长度。

简单使用:

就像两个人面对面打电话:

  1. //待转化成流的数据
  2. byte[] data = "suxingsuxing".getBytes("utf-8");
  3. ByteArrayInputStream bais = new ByteArrayInputStream(data);
  4. int d = -1;
  5. while ((d = bais.read())!=-1){
  6. System.out.print((char)d);
  7. }
  8. System.out.println();
  9. //该流可以不用关,因为数据存在内存中,没有涉及IO
  10. bais.close();

 (2)ByteArrayOutputStream

继承关系:

  1. java.lang.Object
  2. |____java.io.OutputStream
  3. |____java.io.ByteArrayOutputStream

类声明:

  1. public class ByteArrayOutputStream extends OutputStream {
  2. protected byte buf[];
  3. }

 ByteArrayOutputStream 内部同样维护着一个数组,将捕获的内存缓冲区中的数据转化成字节数组后,存储在该类内部的这个数组中。

构造方法:

  1. public ByteArrayOutputStream() {
  2. this(32);
  3. }
  4. public ByteArrayOutputStream(int size) {
  5. if (size < 0) {
  6. throw new IllegalArgumentException("Negative initial size: "
  7. + size);
  8. }
  9. buf = new byte[size];
  10. }

 ByteArrayOutputStream有两个构造方法,一个无参的构造方法,内部数组默认大小为 32 。另一个有参构造方法,接受一个int值,作为内部数组的大小,该方法会抛出IllegalArgumentException异常。

简单使用:

循环向ByteArrayOutputStream中的数组写入数据。

  1. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  2. //写到该流内部维护的数组中。
  3. for (int i = 0;i<10;i++){
  4. baos.write("hello".getBytes());
  5. }
  6. System.out.println(baos.toString());
  7. baos.close();

(3)使用内存流将大写字符串转换成小写

  1. //待转化成流的数据
  2. String data = "HELLO WORLD";
  3. ByteArrayInputStream bais = new ByteArrayInputStream(data.getBytes());
  4. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  5. int d = -1;
  6. while ((d=bais.read())!=-1){
  7. char c = Character.toLowerCase((char)d);
  8. //d = d+32;//处理不了标点符号
  9. baos.write(c);
  10. }
  11. System.out.println(baos.toString());
  12. bais.close();
  13. baos.close();

三、标准输入输出流

1、简介

标准输入输出流有 System.in 和 System.out 。

  1. System.in 标准输入流,用于控制台的输入数据读到内存中。
  2. System.out 标准输出流,用于将内存中的数据打印到控制台。

除了标准输入输出流还有打印流 printStream

2、System.out 和 System.in

(1)简单应用

最简单的应用:

  1. //System.in
  2. Scanner input = new Scanner(System.in);
  3. String data = input.next();
  4. //System.out
  5. System.out.println(data);

查看类型:System类中

  1. public final static InputStream in = null;
  2. public final static PrintStream out = null;

 System.out 是 PrintStream 类型的。System.in是 InputStream 类型的,但是在实例化的时候,System.in实际上是BufferedInputStream,由于实例化时调用的是本地方法,看不到 ,但是,我们可以通过下面两行代码验证:

  1. System.out.println(System.in.getClass().getName());
  2. System.out.println(System.out.getClass().getName());

输出结果:

  1. java.io.BufferedInputStream
  2. java.io.PrintStream

(2) 将System.in 转化为 字符流读取数据:

  1. BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  2. String str = null;
  3. while(true){
  4. str = br.readLine();
  5. if(str.equals("end")){
  6. break;
  7. }else{
  8. System.out.println(str);
  9. }
  10. }
  11. br.close();

 (3)标准输入输出流重定向

利用PrintStream将标准输出流重定向到某个文件:

  1. PrintStream pw = new PrintStream("C:\\suxing\\test_out.txt");
  2. System.setOut(pw);
  3. System.out.println("suxing");
  4. //pw流不能关

将标准输入流重定向到某个文件:

  1. FileInputStream fis = new FileInputStream("C:\\suxing\\test_out.txt");
  2. System.setIn(fis);
  3. BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
  4. String data = bf.readLine();
  5. System.out.println(data);

(4)PrintStream 的继承关系:

  1. java.lang.Object
  2. |____java.io.OutputStream
  3. |____java.io.FilterOutputStream
  4. |____java.io.PrintStream

(5)类声明:

  1. public class PrintStream extends FilterOutputStream
  2. implements Appendable, Closeable
  3. {}

Appendable接口

Appendable接口的实现类的对象能够被添加 char 序列和值。如果某个类的实例打算接收取自 java.util.Formatter 的格式化输出,那么该类必须实现 Appendable接口。

Closeable接口

Closeable  是可以关闭的数据源或目标。调用 close 方法可释放对象保存的资源(如打开文件)。

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/146958
推荐阅读
相关标签
  

闽ICP备14008679号