byte[] bFile = new byte[(int) file.length()];
FileInputStream fileInputStream = new FileInputStream(file);
fileInputStream.read(bFile);
fileInputStream.close();
This code let's me convert file to byte array, am looking for reading file from end to start (in reverse order)
Edit : i dont wan't to read entire file. A part at the end (Example around 1000 bytes)