Make a simple Android application that uses a file ...
More info http://developer.android.com/guide/topics/data/data-storage.html#filesInternal
Lee page 272-
final InputStream is = getResources().openRawResource(R.raw.yourFileName)
FileInputStream fis = openFileInput(yourFileName);
FileOutputStream fos = openFileOutput(yourFileName, MODE_PRIVATE)
;