Android file saved to SD card and memory

Source: Internet
Author: User

1. Save to SD card:

Get the status of SDcard:

Environment.getextemalstoragestate ()

Environment.media_mounted mobile phone is equipped with sdcard and can read and write

Get the directory of SDcard: Environment.getextemalstoragedirectory ()

//=============================================

File Savefile=new file ("/sdcard/zhzhg.txt");

Or: File Sdcarddir=new file ("/sdcard");//get SD card Directory

File SaveFile = new file (Sdcarddir, "zhzhg.txt");

FileOutputStream OutStream = new FileOutputStream (saveFile);

Outstream.write ("Read and Write Files". GetBytes ());

Outstream.close ();

2. Save to Memory:

The Getcachedir () method is used to get the/data/data//cache directory

The Getfilesdir () method is used to get the/data/data//files directory

File File = new file (Myapplication.getinstance (). Getfilesdir () + "/" +path);
out = new PrintWriter (new BufferedWriter (New FileWriter (file, true));
Out.println (str);//Add content to the specified file
Out.flush ();

Android file saved to SD card and memory

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.