码迷,mamicode.com
首页 > 其他好文 > 详细

文件读写操作inputStream转为byte[] , 将InputStream写入本地文件

时间:2020-07-03 10:37:46      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:leo   int   stream   cep   @param   read   本地   class   col   

 将InputStream写入本地文件

    /**
     * 将InputStream写入本地文件
     *
     * @param destination 写入本地目录
     * @param input       输入流
     * @throws IOException IOException
     */
    public static void writeToLocal(String destination, InputStream input)
            throws IOException {
        int index;
        byte[] bytes = new byte[1024];
        FileOutputStream downloadFile = new FileOutputStream(destination);
        while ((index = input.read(bytes)) != -1) {
            downloadFile.write(bytes, 0, index);
            downloadFile.flush();
        }
        input.close();
        downloadFile.close();
    }

 

inputStream转为byte[]

    /**
     * inputStream转为byte[]
     *
     * @param inStream
     * @return byte[]
     * @throws IOException
     */
    public byte[] convert2ByteArray(InputStream inStream) throws IOException {
        ByteArrayOutputStream swapStream = new ByteArrayOutputStream();
        byte[] buff = new byte[1024];
        int rc = 0;
        while ((rc = inStream.read(buff, 0, 1024)) > 0) {
            swapStream.write(buff, 0, rc);
        }
        byte[] in_b = swapStream.toByteArray();// in_b为转换之后的结果
        return in_b;
    }

 

文件读写操作inputStream转为byte[] , 将InputStream写入本地文件

标签:leo   int   stream   cep   @param   read   本地   class   col   

原文地址:https://www.cnblogs.com/yadongliang/p/13226535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!