安卓:如何以字节为单位读取文件?

2022-08-31 12:49:56

我正在尝试在Android应用程序中以字节为单位获取文件内容。我已经在SD卡中获取了文件,现在想要以字节为单位获取所选文件。我用谷歌搜索,但没有这样的成功。请帮忙

下面是获取扩展名文件的代码。通过这个,我得到文件,并在微调器中显示。在文件选择时,我想以字节为单位获取文件。

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;
}

答案 1

这里很简单:

File file = new File(path);
int size = (int) file.length();
byte[] bytes = new byte[size];
try {
    BufferedInputStream buf = new BufferedInputStream(new FileInputStream(file));
    buf.read(bytes, 0, bytes.length);
    buf.close();
} catch (FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

在清单中添加权限.xml:

 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

答案 2

今天最简单的解决方案是使用Apache通用io:

http://commons.apache.org/proper/commons-io/javadocs/api-release/org/apache/commons/io/FileUtils.html#readFileToByteArray(java.io.File)

byte bytes[] = FileUtils.readFileToByteArray(photoFile)

唯一的缺点是在应用中添加此依赖项:build.gradle

implementation 'commons-io:commons-io:2.5'

+ 1562 方法计数