很多时候我们开发的软件需要对处理后的数据进行存储,以供再次访问。Android为数据存储提供了如下几种方式:
文件
SharedPreferences(参数)
SQLite数据库
内容提供者(Content Provider)
网络
使用文件进行数据存储
首先给大家介绍使用文件如何对数据进行存储,Activity提供了openFileOutput()方法可以用于把数据输出到文件中
public abstract FileOutputStream openFileOutput(String name, int mode) throws FileNotFoundException;
创建的文件保存在/data/data/<package name>/files目录,如: /data/data/cn.leigo.action/files/leigo.txt ,通过点击Eclipse菜单“Window”->“Show View”->“Other”,在对话窗口中展开android文件夹,选择下面的File Explorer视图,然后在File Explorer视图中展开/data/data/<package name>/files目录就可以看到该文件。
Context.MODE_PRIVATE:为默认操作模式,代表该文件是私有数据,只能被应用本身访问,在该模式下,写入的内容会覆盖原文件的内容,如果想把新写入的内容追加到原文件中。可以使用Context.MODE_APPEND
Context.MODE_APPEND:模式会检查文件是否存在,存在就往文件追加内容,否则就创建新文件。
Context.MODE_WORLD_READABLE和Context.MODE_WORLD_WRITEABLE用来控制其他应用是否有权限读写该文件。
MODE_WORLD_READABLE:表示当前文件可以被其他应用读取;MODE_WORLD_WRITEABLE:表示当前文件可以被其他应用写入。
第二步:修改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:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/filename" /> <EditText android:id="@+id/et_filename" android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="text" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/filecontent" /> <EditText android:id="@+id/et_filecontent" android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="text" android:minLines="3" /> <Button android:id="@+id/btn_save" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/save" /> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">File</string> <string name="action_settings">Settings</string> <string name="hello_world">Hello world!</string> <string name="filename">文件名称</string> <string name="filecontent">文件内容</string> <string name="save">保存</string> <string name="please_enter_name_and_content">文件名和文件内容不能为空!</string> <string name="success">保存成功!</string> <string name="fail">保存失败!</string> </resources>
package cn.leigo.file; import java.io.IOException; import cn.leigo.service.FileService; import android.app.Activity; import android.os.Bundle; import android.text.TextUtils; 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 implements OnClickListener { private EditText mFileNameEditText; private EditText mFileContentEditText; private Button mSaveButton; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mFileNameEditText = (EditText) findViewById(R.id.et_filename); mFileContentEditText = (EditText) findViewById(R.id.et_filecontent); mSaveButton = (Button) findViewById(R.id.btn_save); mSaveButton.setOnClickListener(this); } @Override public void onClick(View v) { String fileName = mFileNameEditText.getText().toString(); String fileContent = mFileContentEditText.getText().toString(); if (!TextUtils.isEmpty(fileName) && !TextUtils.isEmpty(fileContent)) { FileService service = new FileService(this); try { service.save(fileName, fileContent); Toast.makeText(this, R.string.success, Toast.LENGTH_SHORT) .show(); } catch (IOException e) { Toast.makeText(this, R.string.fail, Toast.LENGTH_SHORT).show(); e.printStackTrace(); } } else { Toast.makeText(this, R.string.please_enter_name_and_content, Toast.LENGTH_SHORT).show(); } } }
package cn.leigo.service; import java.io.ByteArrayOutputStream; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import android.content.Context; public class FileService { private Context context; public FileService(Context context) { this.context = context; } /** * 保存文件 * * @param context * 上下文对象 * @param fileName * 文件名称 * @param fileContent * 文件内容 * @throws IOException */ public void save(String fileName, String fileContent) throws IOException { // 私有操作模式:创建出来的文件只能被本应用访问,其他应用无法访问该文件, // 另外采用私有操作模式创建的文件,写入文件中的内容会覆盖原文件的内容 FileOutputStream fos = context.openFileOutput(fileName, Context.MODE_PRIVATE); fos.write(fileContent.getBytes()); fos.close(); } /** * 读取文件内容 * * @param fileName * 文件名称 * @return 文件内容 * @throws IOException */ public String read(String fileName) throws IOException { FileInputStream fis = context.openFileInput(fileName); ByteArrayOutputStream baos = new ByteArrayOutputStream(); byte[] buffer = new byte[1024]; int len = 0; while ((len = fis.read(buffer)) != -1) { baos.write(buffer, 0, len); } baos.close(); fis.close(); String fileContent = new String(baos.toByteArray()); return fileContent; } }
编写一个测试类测试读取文件:
package cn.leigo.test; import android.test.AndroidTestCase; import android.util.Log; import cn.leigo.service.FileService; public class FileServiceTest extends AndroidTestCase { private static final String TAG = "FileServiceTest"; public void testRead() throws Exception { FileService service = new FileService(getContext()); String result = service.read("leigo.txt"); Log.i(TAG, result); } }
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cn.leigo.file" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="10" /> <instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="cn.leigo.file" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <uses-library android:name="android.test.runner" /> <activity android:name="cn.leigo.file.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>
运行测试:
查看日志