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

文件转二进制流

时间:2016-08-05 19:38:54      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

 

/**
     * file->byte[]
     * 
     * @param file
     */
    public static byte[] fileToByte(File file) {
        byte[] byteArray = null;
        InputStream is;
        ByteArrayOutputStream baos;
        try {
            is = new FileInputStream(file);

            baos = new ByteArrayOutputStream(1024 * 1024);
            byte[] buf = new byte[1024 * 1024];
            int len;
            while ((len = is.read(buf)) != -1) {
                baos.write(buf, 0, len);
            }
            is.close();
            baos.flush();
            baos.close();
            byteArray = baos.toByteArray();
        } catch (FileNotFoundException e) {

        } catch (IOException e) {
            e.printStackTrace();
        }
        return byteArray;
    }

 

还需自行查阅源码,做健壮处理。

需要完善。

文件转二进制流

标签:

原文地址:http://www.cnblogs.com/zno2/p/4496838.html

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