当前位置:   article > 正文

Java_io体系之BufferedInputStream、BufferedOutputStream简介、走进源码及示例——10

java 源码 bufferedinputstream 优势

Java_io体系之BufferedInputStream、BufferedOutputStream简介、走进源码及示例——10


一:BufferedInputStream


1、类功能简介:


缓冲字节输入流、作为FilterInputStream的一个子类、他所提供的功能是为传入的底层字节输入流提供缓冲功能、他会通过底层字节输入流(in)中的字节读取到自己的buffer中(内置缓存字节数组)、然后程序调用BufferedInputStream的read方法将buffer中的字节读取到程序中、当buffer中的字节被读取完之后、BufferedInputStream会从in中读取下一个数据块到buffer中供程序读取、直到in中数据被读取完毕、这样做的好处一是提高了读取的效率、二是减少了打开存储介质的连接次数、详细的原因下面BufferedOutputStream有说到。其有个关键的方法fill()就是每当buffer中数据被读取完之后从in中将数据填充到buffer中、程序从内存中读取数据的速度是从磁盘中读取的十倍!这是一个很恐怖的效率的提升、同时我们也不能无禁止的指定BufferedInputStream的buffer大小、毕竟、一次性读取in中耗时较长、二是内存价格相对昂贵、我们能做的就是尽量在其中找到合理点。一般也不用我们费这个心、创建BufferedInputStream时使用buffer的默认大小就好。


2、BufferedInputStream API简介:


A:关键字段

  1. private static int defaultBufferSize = 8192;//内置缓存字节数组的大小
  2. protected volatile byte buf[]; 内置缓存字节数组
  3. protected int count; 当前buf中的字节总数、注意不是底层字节输入流的源中字节总数
  4. protected int pos; 当前buf中下一个被读取的字节下标
  5. protected int markpos = -1; 最后一次调用mark(int readLimit)方法记录的buf中下一个被读取的字节的位置
  6. protected int marklimit; 调用mark后、在后续调用reset()方法失败之前云寻的从in中读取的最大数据量、用于限制被标记后buffer的最大值


B:构造方法

  1. BufferedInputStream (InputStream in); 使用默认buf大小、底层字节输入流构建bis
  2. BufferedInputStream (InputStream in, int size); 使用指定buf大小、底层字节输入流构建bis


C:一般方法

  1. int available(); 返回底层流对应的源中有效可供读取的字节数
  2. void close(); 关闭此流、释放与此流有关的所有资源
  3. boolean markSupport(); 查看此流是否支持mark、此方法一直返回true
  4. void mark(int readLimit); 标记当前buf中读取下一个字节的下标
  5. int read(); 读取buf中下一个字节
  6. int read(byte[] b, int off, int len); 读取buf中下一个字节
  7. void reset(); 重置最后一次调用mark标记的buf中的位子
  8. long skip(long n); 跳过n个字节、 不仅仅是buf中的有效字节、也包括in的源中的字节


3、源码分析:


  1. package com.chy.io.original.code;
  2. import java.io.IOException;
  3. import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;
  4. /**
  5. * BufferedInputStream 缓冲字节输入流、作为FilterInputStream的一个实现类、为子类添加缓冲功能、自带一个缓冲数组、
  6. * 是为传入的InputStream的实现类(简称in)提供缓冲读取功能、他的原理是从in中一次性读取一个数据块放入自带的缓冲数组中、
  7. * 当这个缓冲数组中的数据被读取完时、BufferedInputStream再从in中读取一个数据块、这样循环读取。
  8. * 缓存数组是放在内存中的、当程序从buf中读取字节的时候、相当于从内存中读取、从内存中读取的效率至少是从磁盘等存储介质的十倍以上!
  9. * 这里会有人想干嘛不一次性读取所有in中的字节放入内存中?
  10. * 1)读取全部字节可能耗费的时间较长、
  11. * 2)内存有限、不想磁盘等存储介质存储空间那么大、价格也相对昂贵的多!
  12. *
  13. */
  14. public class BufferedInputStream extends FilterInputStream {
  15. // BufferedInputStream自带的数组大小
  16. private static int defaultBufferSize = 8192;
  17. /**
  18. *自带数组、如果在根据传入的in构造BufferedInputStream没有传入时、其大小为8192、
  19. *如果传入则使用传入的大小。
  20. */
  21. protected volatile byte buf[];
  22. /**
  23. * 缓存数组的原子更新器。
  24. * 该成员变量与buf数组的volatile关键字共同组成了buf数组的原子更新功能实现,
  25. * 即,在多线程中操作BufferedInputStream对象时,buf和bufUpdater都具有原子性(不同的线程访问到的数据都是相同的)
  26. */
  27. private static final
  28. AtomicReferenceFieldUpdater<BufferedInputStream, byte[]> bufUpdater =
  29. AtomicReferenceFieldUpdater.newUpdater
  30. (BufferedInputStream.class, byte[].class, "buf");
  31. /**
  32. *当前缓冲字节数组中的有效可供读取的字节总数。
  33. *注意这里是缓冲区、即缓冲数组buf中的有效字节、而不是in中有效的字节
  34. */
  35. protected int count;
  36. /**
  37. * 用于标记buf中下一个被读取的字节的下标、即下一个被读取的字节是buf[pos]、pos取值范围一般是 0 到count、
  38. * 如果pos = count则说明这个buf中的字节被读取完、那么需要从in中读取下一个数据块用于读取。
  39. * 同样:这里指的是缓冲字节数组中字节的下标、而不是in中的字节的下标
  40. */
  41. protected int pos;
  42. /**
  43. * 当前缓冲区的标记位置、
  44. * mark() reset()结合使用步骤(单独使用没有意义)
  45. * 1)调用mark()、将标记当前buf中下一个要被读取的字节的索引 pos保存到 markpos中
  46. * 2)调用reset()、将markpos的值赋给pos、这样再次调用read()的时候就会从最后一次调用mark方法的位置继续读取。
  47. */
  48. protected int markpos = -1;
  49. /**
  50. * 调用mark方法后、在后续调用reset()方法失败之前所允许的最大提前读取量。
  51. */
  52. protected int marklimit;
  53. /**
  54. * 检测传入的基础流in是否关闭。若没有关闭则返回此流。
  55. */
  56. private InputStream getInIfOpen() throws IOException {
  57. InputStream input = in;
  58. if (input == null){
  59. throw new IOException("Stream closed");
  60. }
  61. return input;
  62. }
  63. /**
  64. *检测BufferedInputStream是否关闭、如果没有关闭则返回其自带缓存数组buf。
  65. */
  66. private byte[] getBufIfOpen() throws IOException {
  67. byte[] buffer = buf;
  68. if (buffer == null)
  69. throw new IOException("Stream closed");
  70. return buffer;
  71. }
  72. /**
  73. * 使用BufferedInputStream默认的缓冲字节数组大小及传入的基础输入字节流in创建BufferedInputStream。
  74. */
  75. public BufferedInputStream(InputStream in) {
  76. this(in, defaultBufferSize);
  77. }
  78. /**
  79. * 使用传入的缓冲字节数组大小及传入的基础输入字节流in创建BufferedInputStream。
  80. */
  81. public BufferedInputStream(InputStream in, int size) {
  82. super(in);
  83. if (size <= 0) {
  84. throw new IllegalArgumentException("Buffer size <= 0");
  85. }
  86. buf = new byte[size];
  87. }
  88. /**
  89. * 从输入流in中获取字节、填充到缓冲字节数组中。这里由于时间关系没有过于纠结内部实现、有兴趣的可以自己研究下
  90. */
  91. private void fill() throws IOException {
  92. byte[] buffer = getBufIfOpen();
  93. if (markpos < 0){
  94. pos = 0; /* no mark: throw away the buffer */
  95. }else if (pos >= buffer.length){ /* no room left in buffer */
  96. if (markpos > 0) { /* can throw away early part of the buffer */
  97. int sz = pos - markpos;
  98. System.arraycopy(buffer, markpos, buffer, 0, sz);
  99. pos = sz;
  100. markpos = 0;
  101. } else if (buffer.length >= marklimit) {
  102. markpos = -1; /* buffer got too big, invalidate mark */
  103. pos = 0; /* drop buffer contents */
  104. } else { /* grow buffer */
  105. int nsz = pos * 2;
  106. if (nsz > marklimit){
  107. nsz = marklimit;
  108. }
  109. byte nbuf[] = new byte[nsz];
  110. System.arraycopy(buffer, 0, nbuf, 0, pos);
  111. if (!bufUpdater.compareAndSet(this, buffer, nbuf)) {
  112. // Can't replace buf if there was an async close.
  113. // Note: This would need to be changed if fill()
  114. // is ever made accessible to multiple threads.
  115. // But for now, the only way CAS can fail is via close.
  116. // assert buf == null;
  117. throw new IOException("Stream closed");
  118. }
  119. buffer = nbuf;
  120. }
  121. }
  122. count = pos;
  123. int n = getInIfOpen().read(buffer, pos, buffer.length - pos);
  124. if (n > 0){
  125. //根据从输入流中读取的实际数据的多少,来更新buffer中数据的实际大小
  126. count = n + pos;
  127. }
  128. }
  129. /**
  130. * 读取下一个字节、并以整数形式返回。
  131. */
  132. public synchronized int read() throws IOException {
  133. if (pos >= count) {
  134. // 若已经读完缓冲区中的数据,则调用fill()从输入流读取下一部分数据来填充缓冲区
  135. fill();
  136. //读取完in最后一个字节。
  137. if (pos >= count)
  138. return -1;
  139. }
  140. return getBufIfOpen()[pos++] & 0xff;
  141. }
  142. /**
  143. * 将缓存字节数组中的字节写入到从下标off开始、长度为len的byte[]b 中。
  144. */
  145. private int read1(byte[] b, int off, int len) throws IOException {
  146. int avail = count - pos;
  147. if (avail <= 0) {
  148. /**
  149. * 如果传入的byte[]的长度len大于buf的size、并且没有markpos、就直接从原始流中读取len个字节放入byte[]b中
  150. * 避免不必要的copy:从原始流中读取buf.length个放入buf中、再将buf中的所有字节放入byte[]b 中
  151. * 再清空buf、再读取buf.length个放入buf中 、还要放入byte[]b中直到 len个。
  152. */
  153. if (len >= getBufIfOpen().length && markpos < 0) {
  154. return getInIfOpen().read(b, off, len);
  155. }
  156. //若缓冲区数据被读取完、则调用fill()填充buf。
  157. fill();
  158. avail = count - pos;
  159. if (avail <= 0) return -1;
  160. }
  161. int cnt = (avail < len) ? avail : len;
  162. System.arraycopy(getBufIfOpen(), pos, b, off, cnt);
  163. pos += cnt;
  164. return cnt;
  165. }
  166. /**
  167. * 将buf中的字节读取到下标从off开始、len长的byte[]b 中
  168. */
  169. public synchronized int read(byte b[], int off, int len)
  170. throws IOException
  171. {
  172. getBufIfOpen(); // Check for closed stream
  173. if ((off | len | (off + len) | (b.length - (off + len))) < 0) {
  174. throw new IndexOutOfBoundsException();
  175. } else if (len == 0) {
  176. return 0;
  177. }
  178. /**
  179. * 不断的读取字节、放入b中、有以下几种情况
  180. * 1)buf中有len个可供读取、则将len个字节copy到b中
  181. * 2)buf中不足len个、从源输入流中读取下一个数据块
  182. * a)源输入流中有可供读取的有效的、读取并填充buf、继续填充到b中
  183. * b)读到结尾、依然不够、将所有读取的填充到b中
  184. */
  185. int n = 0;
  186. for (;;) {
  187. int nread = read1(b, off + n, len - n);
  188. if (nread <= 0)
  189. return (n == 0) ? nread : n;
  190. n += nread;
  191. if (n >= len)
  192. return n;
  193. // if not closed but no bytes available, return
  194. InputStream input = in;
  195. if (input != null && input.available() <= 0)
  196. return n;
  197. }
  198. }
  199. /**
  200. * 跳过n个字节、返回实际跳过的字节数。
  201. */
  202. public synchronized long skip(long n) throws IOException {
  203. getBufIfOpen(); // Check for closed stream
  204. if (n <= 0) {
  205. return 0;
  206. }
  207. long avail = count - pos;
  208. if (avail <= 0) {
  209. // If no mark position set then don't keep in buffer
  210. if (markpos <0)
  211. return getInIfOpen().skip(n);
  212. // Fill in buffer to save bytes for reset
  213. fill();
  214. avail = count - pos;
  215. if (avail <= 0)
  216. return 0;
  217. }
  218. long skipped = (avail < n) ? avail : n;
  219. pos += skipped;
  220. return skipped;
  221. }
  222. /**
  223. * 返回in中有效可供被读取的字节数。从这里也可以看出、有效字节是in中现有有效字节与buf中剩余字节的和。
  224. * 即buf中是从in中读取的一个供程序读取的数据块。
  225. */
  226. public synchronized int available() throws IOException {
  227. return getInIfOpen().available() + (count - pos);
  228. }
  229. /**
  230. * @param readlimit 在mark方法方法失效前最大允许读取量
  231. */
  232. public synchronized void mark(int readlimit) {
  233. marklimit = readlimit;
  234. markpos = pos;
  235. }
  236. /**
  237. * 将最后一次调用mark标记的位置传递给pos、使得此流可以继续接着最后一次mark的地方读取。
  238. * 如果没有调用mark、或者mark失效则抛出IOException。
  239. */
  240. public synchronized void reset() throws IOException {
  241. getBufIfOpen(); // Cause exception if closed
  242. if (markpos < 0)
  243. throw new IOException("Resetting to invalid mark");
  244. pos = markpos;
  245. }
  246. /**
  247. * 查看此流是否支持markSupport
  248. * @return true 此流支持mark。
  249. */
  250. public boolean markSupported() {
  251. return true;
  252. }
  253. /**
  254. * 关闭此流并释放所有资源。
  255. */
  256. public void close() throws IOException {
  257. byte[] buffer;
  258. while ( (buffer = buf) != null) {
  259. if (bufUpdater.compareAndSet(this, buffer, null)) {
  260. InputStream input = in;
  261. in = null;
  262. if (input != null)
  263. input.close();
  264. return;
  265. }
  266. }
  267. }
  268. }


4、实例演示:

当使用BufferedInputStream时、一般就是冲着他的缓冲功能去的、其他的方法在前面底层的类中有代码、使用方法、效果完全相同只是内部实现不同、这里对于BufferedInputStream、BufferedOutputStream的实例放在一起的、可见下面。

二:BufferedOutputStream


1、类功能简介:


BufferedOutputStream、缓存字节输出流、作为FilterInputStream的一个子类、他的功能是为传入的底层字节输出流提供缓存功能、同样当使用底层字节输出流向目的地中写入字节或者字节数组时、没写入一次就要打开一次到目的地的连接、这样频繁的访问不断效率底下、也有可能会对存储介质造成一定的破坏、比如当我们向磁盘中不断的写入字节时、夸张一点、将一个非常大单位是G的字节数据写入到磁盘的指定文件中的、没写入一个字节就要打开一次到这个磁盘的通道、这个结果无疑是恐怖的、而当我们使用BufferedOutputStream将底层字节输出流、比如FileInputStream包装一下之后、我们可以在程序中先将要写入到文件中的字节写入到BufferedOutputStream的内置缓存空间中、然后当达到一定数量时、一次性写入FileInputStream流中、此时、FileInputStream就可以打开一次通道、将这个数据块写入到文件中、这样做虽然不可能达到一次访问就将所有数据写入磁盘中的效果、但也大大提高了效率和减少了磁盘的访问量!这就是其意义所在、

他的具体工作原理在这里简单提一下:这里可能说的比较乱、具体可以看源码、不懂再回头看看这里、当程序中每次将字节或者字节数组写入到BufferedOutputStream中时、都会检查BufferedOutputStream中的缓存字节数组buf(buf的大小是默认的或者在创建bos时指定的、一般使用默认的就好)是否存满、如果没有存满则将字节写入到buf中、如果存满、则调用底层的writer(byte[] b, int off, int len)将buf中的所有字节一次性写入到底层out中、如果写入的是字节数组、如果buf中已满则同上面满的时候的处理、如果能够存下写入的字节数组、则存入buf中、如果存不下、并且要写入buf的字节个数小于buf的长度、则将buf中所有字节写入到out中、然后将要写入的字节存放到buf中(从下标0开始存放)、如果要写入out中的字节超过buf的长度、则直接写入out中、


2、BufferedOutputStream API简介:


A:关键字段

  1. protected byte[] buf; 内置缓存字节数组、用于存放程序要写入out的字节
  2. protected int count; 内置缓存字节数组中现有字节总数

B:构造方法

  1. BufferedOutputStream(OutputStream out); 使用默认大小、底层字节输出流构造bos
  2. BufferedOutputStream(OutputStream out, int size); 使用指定大小、底层字节输出流构造bos


C:一般方法

  1. //在这里提一句、BufferedOutputStream没有自己的close方法、当他调用父类FilterOutputStrem的方法关闭时、会间接调用自己实现的flush方法将buf中残存的字节flush到out中、再out.flush()到目的地中、DataOutputStream也是如此、
  2. void flush(); 将写入bos中的数据flush到out指定的目的地中、注意这里不是flush到out中、因为其内部又调用了out.flush()
  3. write(byte b); 将一个字节写入到buf中
  4. write(byte[] b, int off, int len); 将b的一部分写入buf中

3、源码分析:


  1. package com.chy.io.original.code;
  2. import java.io.IOException;
  3. /**
  4. * 为传入的基础输出流(以下简称 out)提供缓冲功能、先将要写入out的数据写入到BufferedOutputStream缓冲数组buf中、
  5. * 当调用bufferedOutputStream的flush()时、或者调用flushBuffer()时一次性的将数据使用out.write(byte[]b , 0, count)写入out指定的目的地中、
  6. * 避免out.write(byte b)方法每写一个字节就访问一次目的地。
  7. *
  8. */
  9. public class BufferedOutputStream extends FilterOutputStream {
  10. /**
  11. * BufferedOutputStream内置的缓存数组、当out进行写入时、BufferedOutputStream会先将out写入的数据
  12. * 放到buf中、
  13. * 注意:不一定buf[]被写满之后才会写入out中。
  14. */
  15. protected byte buf[];
  16. /**
  17. * 缓存数组中现有的可供写入的有效字节数、
  18. * 注意:这里是buf中的、而不是out中的。
  19. */
  20. protected int count;
  21. /**
  22. * 使用BufferedOutputStream默认的缓存数组大小与基础输出流out创建BufferedOutputStream。
  23. */
  24. public BufferedOutputStream(OutputStream out) {
  25. this(out, 8192);
  26. }
  27. /**
  28. * 使用指定的的缓存数组大小与基础输出流out创建BufferedOutputStream。
  29. */
  30. public BufferedOutputStream(OutputStream out, int size) {
  31. super(out);
  32. if (size <= 0) {
  33. throw new IllegalArgumentException("Buffer size <= 0");
  34. }
  35. buf = new byte[size];
  36. }
  37. /** 如果buf中有的数据、则立刻将buf中所有数据写入目的地中。 并且将count重置为0。*/
  38. private void flushBuffer() throws IOException {
  39. if (count > 0) {
  40. out.write(buf, 0, count);
  41. count = 0;
  42. }
  43. }
  44. /**
  45. * 将要写入out中的数据先写入到buf中。
  46. */
  47. public synchronized void write(int b) throws IOException {
  48. if (count >= buf.length) {
  49. flushBuffer();
  50. }
  51. buf[count++] = (byte)b;
  52. }
  53. /**
  54. * 将从下标off开始、长度为len个字节的byte[]b写入buf中、
  55. */
  56. public synchronized void write(byte b[], int off, int len) throws IOException {
  57. if (len >= buf.length) {
  58. /* 如果写入的字节个数超过buf的长度、
  59. * 那么直接调用out.write(byte b[] , int off, int len)避免重复操作、即读到buf中但buf立马装满
  60. * 此时将buf写入out中又将剩下的填充到buf中。
  61. */
  62. flushBuffer();
  63. out.write(b, off, len);
  64. return;
  65. }
  66. //如果写入的个数大于buf中现有剩余空间、则将buf中的现有count个字节写入out中、注意:flushBuffer之后、count变成了0。
  67. //再将len个字节写入从count下标开始长度为len的buf中。
  68. //同时将count 变成 count +=len.
  69. if (len > buf.length - count) {
  70. flushBuffer();
  71. }
  72. System.arraycopy(b, off, buf, count, len);
  73. count += len;
  74. }
  75. /**
  76. * 1)将buf中现有字节写入out中
  77. * 2)将out中的现有字节flush到目的地中。
  78. */
  79. public synchronized void flush() throws IOException {
  80. flushBuffer();
  81. out.flush();
  82. }
  83. }


4、实例演示:


  1. package com.chy.io.original.test;
  2. import java.io.BufferedInputStream;
  3. import java.io.BufferedOutputStream;
  4. import java.io.File;
  5. import java.io.FileInputStream;
  6. import java.io.FileOutputStream;
  7. import java.io.IOException;
  8. public class BufferedStreamTest {
  9. private static final byte[] byteArray = {
  10. 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,
  11. 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A
  12. };
  13. public static void testBufferedOutputStream() throws IOException{
  14. BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(new File("D:\\bos.txt")));
  15. bos.write(byteArray[0]);
  16. bos.write(byteArray, 1, byteArray.length-1);
  17. //bos.write(byteArray); 注意:这个方法不是BufferedOutputStream的方法、此方法是调用FilterOutputStream的write(byte[] b)
  18. //write(byte[] b)调用本身的write(byte[]b , 0, b.length)方法、而此方法的本质是循环调用传入的out的out.write(byte b)方法.
  19. bos.flush();
  20. }
  21. public static void testBufferedInpuStream() throws IOException{
  22. BufferedInputStream bis = new BufferedInputStream(new FileInputStream(new File("D:\\bos.txt")));
  23. for(int i=0; i<10; i++){
  24. if(bis.available() >=0){
  25. System.out.println(byteToString((byte)bis.read()));
  26. }
  27. }
  28. if(!bis.markSupported()){
  29. return;
  30. }
  31. bis.mark(6666);//标记"当前索引位子" 即第11个字节 k
  32. bis.skip(10);//丢弃10个字节。
  33. //读取剩下的b.length个字节
  34. byte[] b = new byte[1024];
  35. int n1 = bis.read(b, 0, b.length);
  36. System.out.println("剩余有效字节 : " +n1);
  37. printByteValue(b);
  38. bis.reset();//重置输入流最后一次调用mark()标记的索引位置
  39. int n2 = bis.read(b, 0, b.length);
  40. System.out.println("剩余有效字节 : " +n2);
  41. printByteValue(b);
  42. }
  43. private static void printByteValue(byte[] buf) {
  44. for(byte b : buf){
  45. if(b != 0){
  46. System.out.print(byteToString(b) + " ");
  47. }
  48. }
  49. }
  50. private static String byteToString(byte b){
  51. byte[] bAray = {b};
  52. return new String (bAray);
  53. }
  54. public static void main(String[] args) throws IOException {
  55. testBufferedOutputStream();
  56. testBufferedInpuStream();
  57. }
  58. }
对实例的一些补充:这里没有体现出使用这两个类的上面层吹的天花的优点、仅仅是简单的方法、留个坑、有时间弄个实例测试一下读取的效率、、一般这两个类最长用的是包装文件流(当然也可以是其他的流)、有兴趣的可以自己拿被包装的FileInputStream、FileOutputStream、和裸的这两个流、拷贝一个大文件看看差距。

总结:


对于BufferedInputStream、BufferedOutputStream、本质就是为底层字节输入输出流添加缓冲功能、先将底层流中的要读取或者要写入的数据先以一次读取一组的形式来讲数据读取或者写入到buffer中、再对buffer进行操作、这样不但效率、还能节省资源。最后、在程序中、出于效率的考虑、也应为低级流使用这两个类进行装饰一下、而不是直接拿着流直接上、觉得能实现就行。这两个流说的有些粗糙、有时间回头修理、不足之处请见谅、、、、


更多IO内容:java_io 体系之目录


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

闽ICP备14008679号