I am having a data in bytes, and i want to write it into a memory location (not in a file at a location). To do this i am using RandomAccessFile and MappedByteBuffer based on this link
The code looks good and worked fine only when i give a absolute path (say /mnt/sdcard/a.txt) while creating a RandomAccessFile object and also after i run the code i could see a.txt is getting created at the mentioned location.But i need that to be not happening, i want that bytes to be there in the Memory not in the physical location (in the sense, internal, external and application location).
NOTE:
After i written that in memory i need that to be read it again from memory.
Thanks in Advance