zoukankan      html  css  js  c++  java
  • stream转byte数组几种方式

    第一种,写法最简单的。使用原生IO,一个字节一个字节读:

    //一个字符一个字符读,太慢                        
    int i;
    while((i=in.read()) != -1){
        i = in.read();
        arr[j++] = i;
    }

    这种方式非常的慢,极为不推荐。

    第二种,一次读完:

    byte[] arr = new byte[in.available()];
    in.read(arr);

    这种和第一种相反,一次读完流,这种情况在文件稍大时会非常占用内存,也极为不推荐。

    第三种,缓冲读:

    byte[]buff = new byte[1024];
    int eachlength = 0;
    int total = 0;
    while((eachlength = in.read(buff)) != -1){
        System.arraycopy(buff, 0, arr, total, eachlength);
        total += eachlength;
    }

    这种方式每次读取1024字节,然后copy给arr目标数组中。

    第四种,借助commons-io:

    org.apache.commons.io.IOUtils.toByteArray(input)
    

    它源码中的实现是:

    public static byte[] toByteArray(InputStream input)
      throws IOException
    {
      ByteArrayOutputStream output = new ByteArrayOutputStream();
      copy(input, output);
      return output.toByteArray();
    }
    
    public static int copy(InputStream input, OutputStream output)
      throws IOException
    {
      long count = copyLarge(input, output);
      if (count > 2147483647L) {
        return -1;
      }
      return (int)count;
    }
    
    public static long copyLarge(InputStream input, OutputStream output)
      throws IOException
    {
      byte[] buffer = new byte[4096];
      long count = 0L;
      int n = 0;
      while (-1 != (n = input.read(buffer))) {
        output.write(buffer, 0, n);
        count += n;
      }
      return count;
    }
  • 相关阅读:
    计算机网络基础知识整理
    计算机操作系统知识整理
    各类编程语言的主要用途
    计算机的基本组成知识整理
    对IT行业的看法和对软件工程的理解
    正规文法转换
    语法树评论
    c语言文法定义
    词法分析
    0909我对编译原理的见解
  • 原文地址:https://www.cnblogs.com/radio/p/3818441.html
Copyright © 2011-2022 走看看