Androiddatastorage 2
Androiddatastorage 2
Topics
• Data storage options
• Shared preferences
• Internal storage
• External storage
• Database
• Network connection
Data Storage Options
Data Storage Options in Android
• Android provides several options for you to
save persistent application data.
• The solution you choose depends on your
specific needs, such as
> whether the data should be private to your
application or accessible to other applications (and
the user)
> how much space your data requires.
Data Storage Options
• Shared preferences
> Store private primitive data in key-value pairs
• Internal storage
> Store private data on the device memory
• External storage
> Store public data on the shared external storage.
• SQLite databases
> Store structured data in a private database.
• Network connection
> Store data on the web with your own network server.
Content Provider
&
Data Storage
Content Provider & Data Storage
• Most content providers store their data using
Android's file storage methods or SQLite
databases, but you can store your data any way
you want.
Shared Preferences
When to Use Shared Preferences?
• The SharedPreferences class provides a general
framework that allows you to save and retrieve
persistent key-value pairs of primitive data
types.
• You can use SharedPreferences to save any
primitive data:
> booleans, floats, ints, longs, and strings.
• This data will persist across user sessions (even
if your application is killed).
PreferenceActivity Class
• If you're interested in creating user preferences
for your application, see PreferenceActivity,
which provides an Activity framework for you to
create user preferences, which will be
automatically persisted (using shared
preferences underneath).
How to Use Shared Preferences? (1)
• To get a SharedPreferences object for your
application, use one of two methods:
> getSharedPreferences() - Use this if you need
multiple preferences files identified by name, which
you specify with the first parameter.
> getPreferences() - Use this if you need only one
preferences file for your Activity. Because this will be
the only preferences file for your Activity, you don't
supply a name.
How to Use Shared Preferences? (2)
• To write values:
> Call edit() to get a SharedPreferences.Editor.
> Add values with methods such as putBoolean() and
putString().
> Commit the new values with commit()
• To read values:
> use SharedPreferences methods such as
getBoolean() and getString()
Example: Using Shared Preferences
public class Calc extends Activity {
public static final String PREFS_NAME = "MyPrefsFile";
@Override
protected void onCreate(Bundle state){
super.onCreate(state);
...
// Restore preferences
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
boolean silent = settings.getBoolean("silentMode", false);
setSilent(silent);
}
@Override
protected void onStop(){
super.onStop();
// We need an Editor object to make preference changes.
// All objects are from android.context.Context
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
SharedPreferences.Editor editor = settings.edit();
editor.putBoolean("silentMode", mSilentMode);
// Commit the edits!
editor.commit();
}
}
Internal Storage
Using Internal Storage
• You can save files directly on the device's
internal storage.
• By default, files saved to the internal storage
are private to your application and other
applications cannot access them
• When the user uninstalls your application,
these files are removed.
How to Use Internal Storage?
• To create and write a private file to the internal
storage:
> Call openFileOutput() with the name of the file and
the operating mode. This returns a FileOutputStream
object
> Write to the file with write().
> Close the stream with close().
• To read a file from internal storage
> Call openFileInput() and pass it the name of the file
to read. This returns a FileInputStream.
> Read bytes from the file with read().
> Then close the stream with close().
Example: Using Internal Storage
String FILENAME = "hello_file";
String string = "hello world!";
FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(string.getBytes());
fos.close();
Other Useful Methods
• getFilesDir()
> Gets the absolute path to the filesystem directory
where your internal files are saved.
• getDir()
> Creates (or opens an existing) directory within your
internal storage space.
• deleteFile()
> Deletes a file saved on the internal storage.
• fileList()
> Returns an array of files currently saved by your
application.
External Storage
Using External Storage
• Every Android-compatible device supports a
shared "external storage" that you can use to
save files.
• This can be a removable storage media (such
as an SD card) or an internal (non-removable)
storage.
• Files saved to the external storage are world-
readable and can be modified by the user when
they enable USB mass storage to transfer files
on a computer.
Checking Media Availability
• Before you do any work with the external
storage, you should always call
getExternalStorageState() to check the state of
the media
> Mounted
> Missing
> Read-only
> Some other state
Example: Checking Media State