我在开头有一个序列号的音频数据包,它是 4 个字节。
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(baos);
dos.writeInt(sequenceNumber);
我以随机顺序接收数据包,然后将其放入缓冲区,即数组数组。
我想知道按序列号排序数据包的最佳方法是什么。
我检索序列号,如:
ByteArrayInputStream bos = new ByteArrayInputStream(udpPacketBytes);
DataInputStream ds = new DataInputStream(bos);
int receivedValue = ds.readInt();
有没有一种不删除序列号的方法,我可以按所述序列号对整个字节数组进行排序?