Skip to main content

Saving a file in sdcard

Many a times, you want to save some contents permanently from your program. If the data is few words, you can save them in shared preferences. But for larger contents, you need to use a file.

To save a file in sdcard, first of all you should have the permission in your app. You should add this line in AndroidManifest.xml file. 

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>   
Next in code, you should open the file.


                File fl = new File("/mnt/sdcard/yourdirname","yourfilename");
                try {
   FileWriter wr = new FileWriter(fl);
   wr.write(str);//str is the string to be written to file
   wr.close();
  } catch (IOException e) {
    
   e.printStackTrace();
  }

For the File constructor, first parameter is directory name and second is filename. It is always better to write to another directory in sdcard. What happens if the directory does not exist? Your program will crash.

First ensure that the directory where you want to store file exists. If it does not, create it. Then create the file. To do that, you can use exists() function of File class.
could open the file.

               File dir = new File("/mnt/sdcard/yourdirname"); 
               if (!dir.exists() ){
                    if (!dir.mkdir()){ 
                       Toast.makeToast(context,"Unable to create directory",Toast.LENGTH_LONG).show(); 
                       return; 
                   } 
               } 
               File fl = new File(dir,"yourfilename");
              try {
                  FileWriter wr = new FileWriter(fl);
                  wr.write(str);//str is the string to be written to file
                  wr.close();
              } catch (IOException e) {

                  e.printStackTrace();
              }

If the directory does not exist, dir.exists() will be false. Then our code tries to create directory by using dir.mkdir().  If due to any reason, directory creation fails, mkdir() method returns false, and our code exits the function.

Once we have ensured that directory exists, we open the file and write to it.

If necessary the file can opened for appending, so that the contents are added to the end of existing file.


      FileWriter wr = new FileWriter(fl,true);//true to append, false to create new file
      wr.append(str);



Comments

Post a Comment

Popular posts from this blog

Copy to clipboard

In my upcoming app, I have codes which I display. These are some times lengthy, and I want the app to be able to copy this to clipboard. Once it is in clipboard, users can paste it anywhere. So how do you copy some text from your app to clipboard. You need to use clipboard manager. Clipboard Manager This class sets and gets data for the clipboard using Clipdata objects.  You can get the object of this class using system service.  - using statement context.getSystemService(Context.CLIPBOARD_SERVICE) Example I have a dummy project with a button, onclick of which copies content to clipboard. Here is my activity file package com . hegdeapps . testapp ; import android.content.ClipData ; import android.content.ClipboardManager ; import android.support.v7.app.AppCompatActivity ; import android.os.Bundle ; import android.view.View ; import android.widget.Button ; import android.widget.TextView ; public class MainActivity extends ...

Drawables in Android - Layer drawable

Let us see how to use layer drawable. You can have two or more bitmaps on different layers to create such a drawable Using xml : You should use layer-list in your xml file to create layerdrawable. Here is layer.xml <?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <bitmap android:src="@drawable/whiteicon" android:gravity="top|left"/> </item> <item> <bitmap android:src="@drawable/blueicon" android:gravity="top|left"/> </item> <item> <bitmap android:src="@drawable/redicon" android:gravity="top|left"/> </item> </layer-list> We are using three different bitmaps whiteicon.png, redicon.png and blueicon.png which are present in /res/drawable/mdpi folder. All these are of different sizes and aligned to top left. Thi...

Using a list fragment with cursor adapter

All these days, I avoided using fragments. But then I realized for my this particular applications fragments are ideal. I have a master - detail list in my app. Let us say you want to have two fragments - one is a fragment which contains a list of elements and second one expands one element of the list. Both of them share the same cursor from the activity. Let us start with list fragment. Do not try creating list fragment using a wizard. It unnecearrily adds too many methods and classes. Let us start writing our own fragment like this class MyListFragment extends ListFragment { } Next using code menu override option, override the following method onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) This method should be used for inflating the layout file for the fragment.  I have a framelayout in parent activity of this fragment with the id as container. So I will specify that for inflating. The framelayout will be the paren...