I have a 14 question quiz on an Android tablet and for each question I want to save in a file the number of times it's incorrectly answered. Later, maybe days later, I want to access that file to produce statistics. I would like to not have to add external memory if possible. I've been trying to understand file types and manipulation but the how to is not sinking in. I have looked through the beginners guide and sample code snipets but can't relate to what's there. Is there a sample code somewhere that shows how to simply read and write a line containing an integer (the total of incorrect answers) that is accessed by a key (the question number)? Is RandomAccess a good way to go about this?