Quantcast
Channel: Where is the data file on the android file system? - Stack Overflow
Viewing all articles
Browse latest Browse all 4

Where is the data file on the android file system?

$
0
0

I can write a file to local storage of my (Samsung) tablet, with code like this:

String fileName = "myfile.ser";FileOutputStream fos = context.openFileOutput(fileName, Context.MODE_PRIVATE);ObjectOutputStream os = new ObjectOutputStream(fos);os.writeObject(this);os.close();

Reading is no problem either with similar code. I can see the file system in Windows explorer of the attached tablet via USB. But I cannot discover where on the Android file system the file "myfile.ser" is written?

Is it hidden?


Viewing all articles
Browse latest Browse all 4

Latest Images

Trending Articles





Latest Images