Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
503 views
in Technique[技术] by (71.8m points)

how to read file from the phone memory in android?

I need to read the file from the phone memory.How read file ?can anyone help me??

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Here's how to write in a file..

FileOutputStream fos = openFileOutput("urls.txt", Context.MODE_PRIVATE);
fos.write("Alex".getBytes());
fos.close();

Here's how to read that file:

FileInputStream fis = openFileInput("urls.txt");
int c;
while((c=fis.read())!=-1)
        {

            k += (char)c;
        }
fis.close();

String k will contain "Ankit" as a string.

Mind you.. the file "urls.txt" gets formed in the phone memory, you cannot access that file in your project as a resource.

For more information see: http://developer.android.com/guide/topics/data/data-storage.html#filesInternal


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...