Android seems to make life pretty easy for loading resources of certain types. Once I leave the beaten path a little bit, it seems less helpful. I can load in images, sounds and other objects from the assets folder if and only if they are of certain types. If I try to load a binary file of my own format, I get a less than helpful 'file not found' exception, even though listing the directory shows that it is clearly there.

I've tried using the following methods to read a binary file of a custom format from the assets directory:

File jfile = new File("file://android_asset/"+filename); //tried to get the URI of the assets folder
JarFile file = new JarFile("assets/"+filename); //tried assuming the assets folder is root
fd = am.openNonAssetFd( filename); //tried getting my file as an non asset in the assets folder (n.b. it is definitely there)
fs = am.open(filename, AssetManager.ACCESS_BUFFER); //tried loading it as an asset

I'm thinking that there's something fundamental about android file I/O that I don't understand yet. The documentation for asset management seems incomplete and there must be some reason for deliberately making this unintuitive (something to do with security?). So, what's the fool proof, canonical way of loading a binary file of my own format within an android app?

UPDATE:

I tried file:///android_asset/ but still no joy.

String fullfilename = "file:///android_asset/"+filename;
File jfile = new File(fullfilename);
if (jfile.exists())
{
    return new FileInputStream(jfile);
}
else
{
return null;  //the file does exist but it always says it doesn't. 
}

Are there any permissions for the file or in the project manifest that I need?

Thanks

link|improve this question

Define "binary file of my own format"? What are you talking about here? – t0mm13b Aug 7 '11 at 11:07
Hi. I'm not sure how to be more specific. I have a file filled with data; in this case, a 3D model output from an editor I wrote. The format of the data is defined by myself - that is, the order of the bytes within the file are of a format I have chosen. 4 header bytes, material information, vertices as IEEE 4byte floats with position, colour, texture coordinates and so on. After that comes the polygon indices, animation data and so on. That's not so important though - what's important is that I get those bytes from the assets (or any other) folder and into memory. – Luther Aug 7 '11 at 11:11
feedback

2 Answers

up vote 1 down vote accepted

I think the best way to load a file from the Assets folder would be to use AssetManager.open(String filename) - this gives you back an InputStream which you can then wrap in a BufferedInputStream and otherwise call read() to get the bytes. This would work regardless of the file type. What kind of problems have you had with this approach specifically?

link|improve this answer
It returns a fileNotFoundException, even though it is actually there. I was wondering if I'd got the form of 'filename' right but I'm had no luck with all the permeations I've tried (file.ext, file:\\\file.ext, assets\file.ext file:\\\anroid_asset\file.ext etc) – Luther Aug 7 '11 at 14:21
1  
I have used it simply with 'file.ext', i.e. am.open("file.ext");. Strange that it does not work for you in this situation! Try calling am.list(""); to get a list of files it thinks is in your assets folder. – antonyt Aug 7 '11 at 14:28
Did that too (listed the files) and yes, it is strange. Maybe something odd is going on elsewhere in the program causing issues later on. Good to know that open(file) works for others though, that gives me something to aim for. Have you tried it with binary files. – Luther Aug 7 '11 at 15:05
Well, that now works. I'm not exactly sure what was different from when I initially tried 'open' but I didn't wrap it in a 'BufferedInputStream' so perhaps that's the key. Anyway, thanks! – Luther Aug 7 '11 at 19:22
feedback

I think you have left out the slash as in

File jfile = new File("file:///android_asset/"+filename);

There's three forward slashes, not two. :)

link|improve this answer
1  
Hi, thanks for the answer. It certainly looks correct but still no dice for me. – Luther Aug 7 '11 at 11:25
this seems to suggest that I can't load a file from the assets folder using new File(). If not, what's the alternative? stackoverflow.com/questions/5981176/… – Luther Aug 7 '11 at 11:51
feedback

Your Answer

 
or
required, but never shown

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