If you're seeking a pointer style aliasing approach, so that you don't even need to allocate space and copy the data then I believe you're out of luck.
System.arraycopy()
will copy from your source to destination, and efficiency is claimed for this utility. You do need to allocate the destination array.