• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Help adding bin files to android studio

I have a bin file en-parser-chunking.bin which does the chunking part in my project.I am using it as follows

InputStream modelInParse = null;
try {
//load chunking model
Log.i(TAG,"1");
modelInParse = new FileInputStream("en-parser-chunking.bin");

But this is throwing an IO exception in android studio.
I have it in my project files as well.
 
Back
Top Bottom