svoid saveBinaryFile_simple(S fileName, byte[] contents) throws IOException { FileOutputStream fileOutputStream = new(fileName); fileOutputStream.write(contents); fileOutputStream.close(); }