字节数组复制
2021-08-01 04:56
标签:网络编程 arraylist system 数组 new byte code array copy 网络编程中常见字节数组,如何把一组数组比如 List messages 塞到一个大的byte[]中呢。 List encodedMessages = new ArrayList(messages.size()); int allSize = 0; for (Message message : messages) { byte[] tmp = encodeMessage(message); encodedMessages.add(tmp); allSize += tmp.length; } byte[] allBytes = new byte[allSize]; int pos = 0; for (byte[] bytes : encodedMessages) { System.arraycopy(bytes, 0, allBytes, pos, bytes.length); pos += bytes.length; } 字节数组复制标签:网络编程 arraylist system 数组 new byte code array copy 原文地址:https://www.cnblogs.com/juniorMa/p/14960714.html
上一篇:Qt & VS2013 报错:There's no Qt version assigned to this project for platform Win32
下一篇:浏览器 - http协议面试题