Java合并byte[]集合

来源:互联网 发布:linux系统宕机日志 编辑:程序博客网 时间:2024/06/05 11:13
                ByteArrayOutputStream bos = new ByteArrayOutputStream();                byte[] bytes = new byte[1024];                bos.write(bytes);                bos.toByteArray();