FileInputStream fis = new FileInputStream("your file name");
byte[] bytes = new byte[100]; // replace 100 with the desired size, of course
int offset = 0; // which element to stuff the byte into
fis.read(bytes, offset, 1); // the 1 is how many bytes to read