Android 缓存流(BufferedInputStream和BufferedOutputStream)

本文详细介绍了Android中BufferedInputStream和BufferedOutputStream的使用,包括它们的作用、原理及如何在实际开发中进行缓存操作,提升文件读写效率。通过实例代码,解析了如何利用这两个类实现高效的数据流处理。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

public class StreamUtils {
    public static void readData(InputStream is, OutputStream os)
            throws IOException {
        if (is != null && os != null) {
            BufferedInputStream in = new BufferedInputStream(is);
            BufferedOutputStream out = new BufferedOutputStream(os);
            int len = -1;
            byte[] bytes = new byte[1024];
            while ((len = in.read(bytes)) != -1) {
                out.write(bytes, 0, len);
                out.flush();
            }
            out.close();
            os.close();
            in.close();
            is.close();
        }
    }

    public static byte[] getBytes(InputStream is) throws IOException {
        byte[] bytes = null;
        if (is != null) {
            ByteArrayOutputStream os = new ByteArrayOutputStream();
            readData(is, os);
            bytes = os.toByteArray();
        }
        return bytes;
    }

    public static void save(InputStream is, File savePath) throws IOException,
            FileNotFoundException {
        if (is != null && savePath != null) {
            // 如果父目录不存在,则创建该目录
            if (!savePath.getParentFile().exists()) {
                savePath.getParentFile().mkdirs();
            }
            // 创建文件输出流,保存
            FileOutputStream os = new FileOutputStream(savePath);
            readData(is, os);
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值