i have declared byte array but when i try to read into the array 4 bytes from the offset 14 i get indexoutofbound sexception why ?
byte[] bytesEOT = new byte[4];
is.read(bytesEO T, 14, 4);
Thank YOU
byte[] bytesEOT = new byte[4];
is.read(bytesEO T, 14, 4);
Thank YOU
Comment