创建和使用数据库

作者:追风剑情 发布于:2015-8-22 18:52 分类:Android

Android使用的是SQLite数据库系统。为一人应用程序所创建的数据库只能被此应用程序访问,其他应用程序将不能访问它。以编程方式创建的SQLite数据库总是存储在/data/data/<package_name>/databases文件夹下。

一、创建数据库辅助类

  1. package com.example.androidtest;
  2.  
  3. import android.content.ContentValues;
  4. import android.content.Context;
  5. import android.database.Cursor;
  6. import android.database.SQLException;
  7. import android.database.sqlite.SQLiteDatabase;
  8. import android.database.sqlite.SQLiteOpenHelper;
  9. import android.util.Log;
  10.  
  11. /**
  12. * 访问数据库的辅助类
  13. * 封装了访问数据的所有复杂性。
  14. * 为一个应用程序所创建的数据库只能被此应用程序访问,其他应用程序将不能访问它。
  15. * 数据库文件存储在/data/data/<package_name>/databases文件夹下。
  16. * @author Administrator
  17. *
  18. */
  19. public class DBAdapter {
  20. static final String KEY_ROWID = "_id";
  21. static final String KEY_NAME = "name";
  22. static final String KEY_EMAIL = "email";
  23. static final String TAG = "DBAdapter";
  24. static final String DATABASE_NAME = "MyDB";
  25. static final String DATABASE_TABLE = "contacts";
  26. static final int DATABASE_VERSION = 1;
  27. //定义创建表的sql语句常量
  28. static final String DATABASE_CREATE =
  29. "create table contacts (_id integer primary key autoincrement, "
  30. + "name text not null, email text not null);";
  31. final Context context;
  32. DatabaseHelper DBHelper;
  33. SQLiteDatabase db;
  34. public DBAdapter(Context ctx)
  35. {
  36. this.context = ctx;
  37. DBHelper = new DatabaseHelper(context);
  38. }
  39. private static class DatabaseHelper extends SQLiteOpenHelper
  40. {
  41. DatabaseHelper (Context context)
  42. {
  43. super(context, DATABASE_NAME, null, DATABASE_VERSION);
  44. }
  45.  
  46. @Override
  47. public void onCreate(SQLiteDatabase db) {
  48. try {
  49. db.execSQL(DATABASE_CREATE);
  50. } catch (SQLException e){
  51. e.printStackTrace();
  52. }
  53. }
  54.  
  55. @Override
  56. public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
  57. Log.w(TAG, "Upgrading database from version "+oldVersion + "to "
  58. +newVersion+", which will destroy all old data");
  59. //为了简单起见,直接删除现有的表并创建一个新表,在实际中,通常需要备份现在的表,
  60. //然后将其内容复制到新表中。
  61. db.execSQL("DROP TABLE IF EXISTS contacts");
  62. onCreate(db);
  63. }
  64. }
  65. /**
  66. * 创建or打开数据库
  67. * @return
  68. * @throws SQLException
  69. */
  70. public DBAdapter open() throws SQLException
  71. {
  72. db = DBHelper.getWritableDatabase();
  73. return this;
  74. }
  75. /**
  76. * 关闭数据库
  77. */
  78. public void close()
  79. {
  80. DBHelper.close();
  81. }
  82. /**
  83. * 插入数据
  84. * @param name
  85. * @param email
  86. * @return ID
  87. */
  88. public long insertContact(String name, String email)
  89. {
  90. ContentValues initialValues = new ContentValues();
  91. initialValues.put(KEY_NAME, name);
  92. initialValues.put(KEY_EMAIL, email);
  93. return db.insert(DATABASE_TABLE, null, initialValues);
  94. }
  95. /**
  96. * 删除数据
  97. * @param rowId
  98. * @return true:删除成功
  99. */
  100. public boolean deleteContact(long rowId)
  101. {
  102. return db.delete(DATABASE_TABLE, KEY_ROWID+"="+rowId, null) > 0;
  103. }
  104. /**
  105. * 查询所有数据
  106. * @return Cursor 游标(可看成指向结果集的指针)
  107. */
  108. public Cursor getAllContacts()
  109. {
  110. String[] columns = new String[] {KEY_ROWID, KEY_NAME, KEY_EMAIL};
  111. return db.query(DATABASE_TABLE, columns, null, null, null, null, null);
  112. }
  113. /**
  114. * 查询指定数据
  115. * @param rowId
  116. * @return Cursor 游标(可看成指向结果集的指针)
  117. * @throws SQLException
  118. */
  119. public Cursor getContact(long rowId) throws SQLException
  120. {
  121. String[] columns = new String[] {KEY_ROWID, KEY_NAME, KEY_EMAIL};
  122. Cursor mCursor = db.query(true, DATABASE_TABLE, columns, KEY_ROWID+"="+rowId, null, null, null, null, null);
  123. if(mCursor != null) {
  124. mCursor.moveToFirst();
  125. }
  126. return mCursor;
  127. }
  128. /**
  129. * 更新指定数据
  130. * @param rowId
  131. * @param name
  132. * @param email
  133. * @return true:更新成功
  134. */
  135. public boolean updateContact(long rowId, String name, String email)
  136. {
  137. ContentValues args = new ContentValues();
  138. args.put(KEY_NAME, name);
  139. args.put(KEY_EMAIL, email);
  140. return db.update(DATABASE_TABLE, args, KEY_ROWID+"="+rowId, null) > 0;
  141. }
  142. }

二、创建活动

视图

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. tools:context="${relativePackage}.${activityClass}" >
  7.  
  8. <Button
  9. android:id="@+id/btn_insert"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:text="Insert"
  13. android:onClick="onClickInsert" />
  14. <Button
  15. android:id="@+id/btn_query_all"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:text="Query all"
  19. android:onClick="onClickQueryAll" />
  20. <Button
  21. android:id="@+id/btn_query_id"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:text="Query id"
  25. android:onClick="onClickQueryID" />
  26. <Button
  27. android:id="@+id/btn_update"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:text="Update"
  31. android:onClick="onClickUpdate" />
  32. <Button
  33. android:id="@+id/btn_delete"
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:text="Delete"
  37. android:onClick="onClickDelete" />
  38.  
  39. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import java.io.File;
  4. import java.io.FileNotFoundException;
  5. import java.io.FileOutputStream;
  6. import java.io.IOException;
  7. import java.io.InputStream;
  8. import java.io.OutputStream;
  9.  
  10. import android.app.Activity;
  11. import android.database.Cursor;
  12. import android.os.Bundle;
  13. import android.util.Log;
  14. import android.view.View;
  15. import android.widget.Toast;
  16.  
  17. public class DatabasesActivity extends Activity {
  18.  
  19. DBAdapter db;
  20. @Override
  21. protected void onCreate(Bundle savedInstanceState) {
  22. super.onCreate(savedInstanceState);
  23. setContentView(R.layout.activity_databases);
  24. db = new DBAdapter(this);
  25. db.open();
  26. }
  27. @Override
  28. protected void onDestroy()
  29. {
  30. super.onDestroy();
  31. db.close();
  32. }
  33. public void onClickInsert(View view)
  34. {
  35. Log.d("test", "db="+db);
  36. long id = db.insertContact("Wei-MengLee", "weimenglee@qq.com");
  37. id = db.insertContact("Mary Jackson", "mary@qq.com");
  38. Toast.makeText(this, "Insert successful", Toast.LENGTH_SHORT).show();
  39. }
  40. public void onClickQueryAll(View view)
  41. {
  42. Cursor c = db.getAllContacts();
  43. if(c.moveToFirst()){
  44. do {
  45. DisplayContact(c);
  46. } while (c.moveToNext());
  47. }
  48. }
  49. public void onClickQueryID(View view)
  50. {
  51. Cursor c = db.getContact(2);
  52. if(c.moveToFirst()){
  53. DisplayContact(c);
  54. }else{
  55. Toast.makeText(this, "No contact found", Toast.LENGTH_SHORT).show();
  56. }
  57. }
  58. public void onClickUpdate(View view)
  59. {
  60. if(db.updateContact(1, "Wei-Meng Lee", "weimenglee@gmail.com")){
  61. Toast.makeText(this, "Update successful", Toast.LENGTH_SHORT).show();
  62. }else{
  63. Toast.makeText(this, "Update failed", Toast.LENGTH_SHORT).show();
  64. }
  65. }
  66. public void onClickDelete(View view)
  67. {
  68. if(db.deleteContact(1)){
  69. Toast.makeText(this, "Delete successful", Toast.LENGTH_SHORT).show();
  70. }else{
  71. Toast.makeText(this, "Delete failed", Toast.LENGTH_SHORT).show();
  72. }
  73. }
  74. public void DisplayContact(Cursor c)
  75. {
  76. Toast.makeText(this, "id: "+c.getString(0) + "\n" +
  77. "Name: "+c.getString(1) + "\n" +
  78. "Email: " + c.getString(2),
  79. Toast.LENGTH_SHORT).show();
  80. }
  81. /**
  82. * 把assets目录下的一个现成sqlite文件复制到目标文件夹。
  83. * 注意: assets目录下的文件必须采用小写字母格式。
  84. */
  85. public void CopyMyDB() {
  86. try {
  87. String destPath = "/data/data/"+getPackageName()+"/databases";
  88. File f = new File(destPath);
  89. Log.d("test", "db path="+f.getAbsolutePath());
  90. if (!f.exists()){
  91. f.mkdir();
  92. f.createNewFile();
  93. CopyDB(getBaseContext().getAssets().open("mydb"),
  94. new FileOutputStream(destPath+"/MyDB"));
  95. }
  96. } catch (FileNotFoundException e){
  97. e.printStackTrace();
  98. } catch (IOException e){
  99. e.printStackTrace();
  100. }
  101. }
  102. public void CopyDB(InputStream inputStream, OutputStream outputStream) throws IOException
  103. {
  104. byte[] buffer = new byte[1024];
  105. int length;
  106. while ((length = inputStream.read(buffer)) > 0) {
  107. outputStream.write(buffer, 0, length);
  108. }
  109. inputStream.close();
  110. outputStream.close();
  111. }
  112. }

运行效果

11111.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号