Android: Como ler arquivos em bytes?

Eu estou tentando obter o conteúdo do arquivo em bytes no aplicativo Android. Eu tenho o arquivo no cartão SD agora quero pegar o arquivo selecionado em bytes. Eu pesquisei mas não tive sucesso. Por favor ajude

Abaixo está o código para obter arquivos com extensão. Através deste eu recebo arquivos e mostro em spinner. Na seleção de arquivos eu quero pegar o arquivo em bytes.

<code>private List<String> getListOfFiles(String path) {

   File files = new File(path);

   FileFilter filter = new FileFilter() {

      private final List<String> exts = Arrays.asList("jpeg", "jpg", "png", "bmp", "gif","mp3");

      public boolean accept(File pathname) {
         String ext;
         String path = pathname.getPath();
         ext = path.substring(path.lastIndexOf(".") + 1);
         return exts.contains(ext);
      }
   };

   final File [] filesFound = files.listFiles(filter);
   List<String> list = new ArrayList<String>();
   if (filesFound != null && filesFound.length > 0) {
      for (File file : filesFound) {
         list.add(file.getName());
      }
   }
   return list;
}
</code>

questionAnswers(7)

yourAnswerToTheQuestion