context.getAssets().open(path);
context.getAssets().openFd(path);
context.getResources().openRawResource(id);
context.getResources().openRawResourceFd(id);
FileInputStream inputStream = new FileInputStream(path);
FileOutputStream outputStream = new FileOutputStream(path);
inputStream.getFD();
outputStream.getFD();