String extStorageDirectory = context.getExternalCacheDir().getAbsolutePath();
here it gets the path like: /mnt/sdcard/Android/data/com.example/cache
now add ur file name using this path. e.g. abc.txt
/mnt/sdcard/Android/data/com.iris.activity/cache/abc.txt
now use the File class and get an InputStream from this path and read the file from InputStream.
source share