In one byte array?
var totalBytes:ByteArray = new ByteArray;
totalBytes.writeBytes(bytesPartOne);
totalBytes.writeBytes(bytesPartTwo);
totalBytes.writeBytes(bytesPartThree);
totalBytes.writeBytes(bytesPartFour);
Note. Make sure bytesPartOne / two / Three / Four have a position set to zero (can be done byBatPartOne.position = 0, ...)
Will reading partial bytes into a byte array also?
What do you mean partial bytes?
source
share