I'm writing my first Android application, and I'm trying to read a res/raw resource file.

The following code throws a FileNotFound Exception:

AssetFileDescriptor fd = res.openRawResourceFd(R.raw.myfile);

but this line of code works:

InputStream stream = res.openRawResource (R.raw.myfile);

I need the AssetFileDescriptor in order to determine the length of the file. Any ideas why it isn't working?

link|improve this question

50% accept rate
feedback

1 Answer

Move your myfile to asset folder and try this

try{
    AssetFileDescriptor descriptor = getAssets().openFd( "myfile" );
    FileDescriptor fd = descriptor.getFileDescriptor();
}
catch(Exception)
{

}

Or you can try this with your code:

FileInputStream fdstream = res.openRawResource (R.raw.myfile);
FileDescriptor fd = fdstream.getFD();

I am not sure but AssetFileDescriptor works with Asset Folder only.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.