The BlockCopy which can be found under the System namespace in C# has following parameters:
public static void BlockCopy(
Array src,
int srcOffset,
Array dst,
int dstOffset,
int count
)
Is there any implementation in java for this?
I have a Byte-array which contains a file, and I need this function i java. Thanks in advance!
Have a look at
System.arraycopy. (It takes the exact same arguments.)