Tips

SDカードにデータを保存するAndroidサンプルアプリ

MainActivity.java(ソースコード)

activity_main.xmlと紐づきたActivityです。
各ボタンを押下したときの処理を記述しています。

package com.example.outstoragesample;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

import android.app.Activity;
import android.os.Bundle;
import android.os.Environment;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class MainActivity extends Activity {

    //SDカードの場所を取得
	private String sdPath = Environment.getExternalStorageDirectory() + "/sample.txt";

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		//SDカードにデータを書き込む処理
		Button button1 = (Button) findViewById(R.id.button1);
		button1.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {

			    //SDカードの状態を取得
				String sdCardState = Environment.getExternalStorageState();

				//上で取得したSDカードの状態毎に処理を分離
				//書き込み処理が可能な場合
				if (sdCardState.equals(Environment.MEDIA_MOUNTED)) {

					EditText editText = (EditText) findViewById(R.id.editText1);
					String str = editText.getText().toString();

					FileOutputStream fos = null;

					try {

						fos = new FileOutputStream(sdPath);
						fos.write(str.getBytes());
						Toast.makeText(MainActivity.this, str + "さんを登録しました。", Toast.LENGTH_SHORT).show();

					} catch (IOException e) {
						e.printStackTrace();
						Toast.makeText(MainActivity.this, "登録できませんでした。SDカードを確認してください。", Toast.LENGTH_LONG)	.show();

					} finally {
						try {
							if (fos != null)
								fos.close();
						} catch (IOException e) {
							e.printStackTrace();
						}

					}

				//SDカードが読取専用の場合
				} else if (sdCardState.equals(Environment.MEDIA_MOUNTED_READ_ONLY)) {
					Toast.makeText(MainActivity.this, "このSDカードは読取専用です。", Toast.LENGTH_LONG).show();

				//SDカードが挿入されていない場合
				} else if (sdCardState.equals(Environment.MEDIA_REMOVED)) {
					Toast.makeText(MainActivity.this, "SDカードが挿入されていません。", Toast.LENGTH_LONG).show();

				//SDカードがマウントされていない場合
				} else if (sdCardState.equals(Environment.MEDIA_UNMOUNTED)) {
					Toast.makeText(MainActivity.this, "SDカードがマウントされていません。", Toast.LENGTH_LONG).show();

				//その他の場合
				} else {
					Toast.makeText(MainActivity.this, "SDカードを確認してください。", Toast.LENGTH_LONG).show();
				}
			}

		});

		//SDカードのデータを読み込む処理
		Button button2 = (Button) findViewById(R.id.button2);
		button2.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {

			  //SDカードの状態を取得
				String sdCardState = Environment.getExternalStorageState();

				//メディアがマウントされている、もしくは読取用としてマウントしている場合
				if (sdCardState.equals(Environment.MEDIA_MOUNTED) || sdCardState.equals(Environment.MEDIA_MOUNTED_READ_ONLY)) {

					FileInputStream fis = null;

					try {
						fis = new FileInputStream(sdPath);
						byte[] buffer = new byte[100];
						fis.read(buffer);
						String str = new String(buffer).trim();
						Toast.makeText(MainActivity.this, str + "さんが登録されています。", Toast.LENGTH_SHORT).show();

					} catch (IOException e) {
						e.printStackTrace();
						Toast.makeText(MainActivity.this, "登録できませんでした。", Toast.LENGTH_LONG).show();

					} finally {
						try {
							if (fis != null)
								fis.close();
						} catch (IOException e) {
							e.printStackTrace();
						}
					}

				//SDカードが挿入されていない場合
				} else if (sdCardState.equals(Environment.MEDIA_REMOVED)) {
					Toast.makeText(MainActivity.this, "SDカードが挿入されていません。", Toast.LENGTH_LONG).show();

				//SDカードがマウントされていない場合
				} else if (sdCardState.equals(Environment.MEDIA_UNMOUNTED)) {
					Toast.makeText(MainActivity.this, "SDカードがマウントされていません。", Toast.LENGTH_LONG).show();

				//ぞの他の場合
				} else {
					Toast.makeText(MainActivity.this, "SDカードを確認してください。", Toast.LENGTH_LONG).show();
				}
			}
		});

	}
}

activity_main.xml

アプリ起動時に表示されるメイン画面です。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
	android:orientation="vertical"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="名前を入力してください。" />

    <EditText
        android:id="@+id/editText1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="登録" />

    <Button
        android:id="@+id/button2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="参照" />

</LinearLayout>

AndroidManifest.xml

追加したActivityは必ずManifestにも記述しましょう。

<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.outstoragesample"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="17" />

    <uses-permission
        android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.outstoragesample.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

これでOKです。

Androidアプリ開発の必須知識!JAVAプログラミングを学べる連載リンク

はじめてのJAVA 連載

Recent News

Recent Tips

Tag Search