我知道如何使用AssetManager通过InputStream从res / raw目录中读取文件,但对于我的特殊用例,我需要一个FileInputStream.我特别需要FileInputStream的原因是因为我需要通过调用getChannel()从中获取FileChannel对象.
这是我到目前为止的代码,它从文件中读取数据(在我的例子中是一个基元列表):
public static int[] loadByMappedBuffer(Context context, String filename) throws IOException{
FileInputStream fis = context.openFileInput(filename);
FileChannel ch = fis.getChannel();
MappedByteBuffer mbuff = ch.map(MapMode.READ_ONLY, 0, ch.size());
IntBuffer ibuff = mbuff.asIntBuffer();
int[] array = new int[ibuff.limit()];
ibuff.get(array);
fis.close();
ch.close();
return array;
}
我曾尝试从Uri创建File,但这只会导致FileNotFoundException:
Uri uri = Uri.parse("android.resource://com.example.empty/raw/file");
File file = new File(uri.getPath());
FileInputStream fis = new FileInputStream(file);
有没有办法让我可以在res / raw目录下的File中获取FileInputStream?