byte is a primitive type, not a reference. Thus there is no difference between shallow and deep copy in this case.
Try using an array of a mutable object type, and you will notice the difference.
Update
but byte[] is a reference type right?
An array of a primitive type is deep down most probably represented by a contiguous block of memory, physically (by value) containing the elements. Whereas an array of an object type is a contiguous block of memory, containing only references to the actual elements (or nulls). Thus when you copy the array, in the first case you get a new array containing copies of the elements of the original. So after that, modifying an element in either of the arrays won't change the contents of the other array. Whereas in the second case you get a new array containing copies of the references in the original, still pointing to the same objects referred to by the original array elements. So if you modify any of the elements in either of the array, the change will be visible in the other array too.