In Java, how do I take a byte[] array and remove the first 16 bytes from the array? I know I might have to do this by copying the array into a new array. Any examples or help would be appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There's already a method for this in the Java library:
|
|||
|
|
|
|||
|
|
byteArray[2]tobyteArray[byteArray.length-1]– Pablo Fernandez Sep 20 '11 at 3:20