Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> Android應用開發教程之十五:制作第三方數據庫與讀取

Android應用開發教程之十五:制作第三方數據庫與讀取

編輯:關於android開發

Android應用開發教程之十五:制作第三方數據庫與讀取

  Android軟件開發中為什麼要制作第三方數據庫?在程序中獲取數據的方式無非就是兩種:本地獲取,服務器獲取。如果項目中的數據非常龐大,並且又不能使用聯網獲取數據的方式,那麼就需要采取制作第三方數據庫的方式。我用一個比較實際的例子向大家說明這一點,最近我制作了一個來電歸屬地查詢的小DEMO,產品的需求是對方打過來電話後能再屏幕中現實對方手機號碼的歸屬地。Android提供了聯網獲取歸屬地的方式,但是我沒有采取這樣的方式獲取號碼歸屬地。因為聯網獲取號碼歸屬地時間實在無法控制,有可能用戶已經接通電話數據才獲取到,那麼來電歸屬地的意義就不存在了。並且聯網獲取數據還必需是在有網絡的情況下,所以限制太多了,所以我放棄的聯網獲取手機號碼歸屬地的方法。

  接著我在網絡中找了一份07年手機號碼歸屬地的數據庫原始資源。它是以TXT形式包含中國所有省份與城市的號碼歸屬地規則,如下圖所示,打開上海所在的歸屬地文件後。發現歸屬的規則是截取手機號碼前6位判斷手機號碼所在的歸屬地。歸屬地數據庫的原始資源包括移動號碼與聯通號碼,加起來一共有61個文本文件。我們需要編寫程序這些數據需要全部寫入數據庫中,然後將生成的數據庫文件放入需要查詢的新工程中。這麼做的原因是歸屬地數據庫的數據量比較大,如果在查詢的工程中寫入數據庫的話至少也要20分鐘。這樣會造成用戶安裝完軟件後,第一個電話打進來時有可能你的數據庫還沒寫完,用戶體驗大打折扣。所以我們需要在第三方程序中將這個龐大的數據庫先制作出來,然後在放入軟件中,最後直接操作這個數據庫即可。

Android應用開發教程之十五:制作第三方數據庫與讀取

  07年的數據確實有點老,但是本篇博文的重點不是探討手機號碼歸屬地。我最終的涉及思路是將.db文件放置在服務器中,服務器端來維護這個db文件,用戶首次安裝時從服務器下載這個數據庫文件,說的有點遠了 呵呵。下面學習如何將歸屬地數據庫中龐大的原始數據寫入數據庫當中,首先需要制作生成數據庫的程序。如下圖所示,本程序的是方法為點擊“開始讀取資源寫入數據庫”按鈕後,程序將循環開始在本地讀取所有原始資源,截取出需要的數值後在寫入歸屬地數據庫當中。

Android應用開發教程之十五:制作第三方數據庫與讀取

  上圖對應的Activity是GenerateDBActivity,代碼如下所示:

Java代碼
  1. import java.io.BufferedReader;  
  2. import java.io.IOException;  
  3. import java.io.InputStream;  
  4. import java.io.InputStreamReader;  
  5. import java.io.UnsupportedEncodingException;  
  6.    
  7. import android.app.Activity;  
  8. import android.content.res.Resources;  
  9. import android.content.res.Resources.NotFoundException;  
  10.    
  11. import android.os.Bundle;  
  12. import android.os.Handler;  
  13. import android.os.Message;  
  14. import android.util.Log;  
  15. import android.view.View;  
  16. import android.view.View.OnClickListener;  
  17. import android.widget.Button;  
  18. import android.widget.TextView;  
  19. import android.widget.Toast;  
  20.    
  21. public class GenerateDBActivity extends Activity  
  22. {  
  23.    
  24.     //DB對象  
  25.     public DBHelper m_db = null;  
  26.     //按鈕對象  
  27.     public Button button = null;  
  28.     //文本對象  
  29.     public TextView textNumber = null;  
  30.     public TextView textCity = null;  
  31.     public TextView textLocation = null;  
  32.    
  33.     //接收線程中傳遞的數值,用於刷新UI  
  34.     Handler handler = new Handler() {  
  35.         //注解3  
  36.         @Override  
  37.         public void handleMessage(Message msg) {  
  38.    
  39.             Bundle bundle = msg.getData();  
  40.             //獲取號碼、城市、省級  
  41.             String number = bundle.getString("number");  
  42.             String city = bundle.getString("city");  
  43.             String location = bundle.getString("location");  
  44.             //更新UI  
  45.             textNumber.setText(number);  
  46.             textCity.setText(city);  
  47.             textLocation.setText(location);  
  48.    
  49.             super.handleMessage(msg);  
  50.         }  
  51.     };    
  52.    
  53.     @Override  
  54.     public void onCreate(Bundle savedInstanceState)  
  55.     {  
  56.         super.onCreate(savedInstanceState);  
  57.         setContentView(R.layout.main);  
  58.    
  59.         // 獲取DBHelper對象  
  60.         m_db = DBHelper.getInstance(this);  
  61.    
  62.         //獲取按鈕對象  
  63.         button = (Button)this.findViewById(R.id.button);  
  64.         button.setText("開始讀取資源寫入數據庫");  
  65.         //獲取文本對象  
  66.         textNumber = (TextView)this.findViewById(R.id.number);  
  67.         textCity = (TextView)this.findViewById(R.id.city);  
  68.         textLocation = (TextView)this.findViewById(R.id.location);  
  69.    
  70.         //開始讀取資源  
  71.         button.setOnClickListener(new OnClickListener()  
  72.         {  
  73.    
  74.             @Override  
  75.             public void onClick(View v)  
  76.             {  
  77.                 //注解1  
  78.                 //啟動線程開始讀取資源並寫入數據庫當中  
  79.                 new Thread()  
  80.                 {  
  81.                     @Override  
  82.                     public void run()  
  83.                     {  
  84.                         int count = DBHelper.LOCATIONS.length;    
  85.    
  86.                         for(int i =0; i < count; i++)  
  87.                         {  
  88.                             loadLocationFile(i);  
  89.                         }  
  90.    
  91.                     }  
  92.                 }.start();  
  93.    
  94.             }  
  95.         });  
  96.     }  
  97.    
  98.     private void loadLocationFile(int resourceID)  
  99.     {  
  100.         //注解2  
  101.         Resources res = this.getResources();  
  102.         InputStream in = null;  
  103.         BufferedReader br = null;  
  104.    
  105.         try  
  106.         {  
  107.             in = res.openRawResource(R.raw.location_a0 + resourceID);  
  108.             String str;  
  109.             br = new BufferedReader(new InputStreamReader(in, "GBK"));  
  110.             while ((str = br.readLine()) != null)  
  111.             {  
  112.                 //手機號碼特征值為前7位  
  113.                 String number = str.substring(0, 6);  
  114.                 //手機號碼歸屬地從第24位開始到最後  
  115.                 String city = str.substring(24, str.length());  
  116.    
  117.                 //將數據寫入數據庫當中  
  118.                 m_db.insert(DBHelper.TABLE_NAME,  
  119.                             new String[] { DBHelper.NUMBER, DBHelper.CITY, DBHelper.LOCATION },  
  120.                             new String[]{ number, city, DBHelper.LOCATIONS[resourceID] });  
  121.    
  122.                 Message msg = new Message();  
  123.                 Bundle bundle = new Bundle();  
  124.                 bundle.putString("number", "手機號碼特征數據:" + number);  
  125.                 bundle.putString("city", "手機號歸屬地城市:" + city);  
  126.                 bundle.putString("location", "手機號碼省級運營商:" + DBHelper.LOCATIONS[resourceID]);  
  127.                 msg.setData(bundle);  
  128.                 handler.sendMessage(msg);  
  129.    
  130.                 Log.v("xuanyusong", "手機號碼特征數據:" + number + " 手機號歸屬地城市:" + city + " 手機號碼省級運營商:" + DBHelper.LOCATIONS[resourceID]);  
  131.             }  
  132.         } catch (NotFoundException e)  
  133.         {  
  134.             Toast.makeText(this, "文本文件不存在", 100).show();  
  135.             e.printStackTrace();  
  136.         } catch (UnsupportedEncodingException e)  
  137.         {  
  138.             Toast.makeText(this, "文本編碼出現異常", 100).show();  
  139.             e.printStackTrace();  
  140.         } catch (IOException e)  
  141.         {  
  142.             Toast.makeText(this, "文件讀取錯誤", 100).show();  
  143.             e.printStackTrace();  
  144.         } finally  
  145.         {  
  146.             try  
  147.             {  
  148.                 if (in != null)  
  149.                 {  
  150.                     in.close();  
  151.                 }  
  152.                 if (br != null)  
  153.                 {  
  154.                     br.close();  
  155.                 }  
  156.             } catch (IOException e)  
  157.             {  
  158.                 e.printStackTrace();  
  159.             }  
  160.    
  161.         }  
  162.     }  
  163.    
  164. }  

  注解1:在窗口中用戶點擊“讀取寫入數據庫”按鈕後,程序將開啟一個線程來讀取資源,而且代碼必需寫在線程中讀取,因為數據量比較大,主線程中讀取會出現ANR的情況。DBHelper.LOCATIONS.Length表示原始數據資源文件的數量,這裡使用循環將讀取所有原始資源文件。

  注解2:loadLocationFile()方法開始讀取本地原始資源,原始資源全部放置在res/raw下,使用openRawResource()方法取得每一個原始文件的流對象。然後在while循環中調用br.readLine()方法逐行讀取文本對象中的數據,數據讀取完畢後將它們寫入數據庫當中。因為這裡是線程,所以需要刷新UI時就得使用Handler了。

  注解3:數據庫中每插入一條數據庫使用handler發來一條消息,在這裡獲取該消息附帶的參數,然後刷新UI將數據現實在屏幕中。

  數據庫的創建與插入數據的方法寫在 DBHelper類當中,代碼如下所示:

Java代碼
  1. package com.m15.cn;  
  2.    
  3. import android.content.ContentValues;  
  4. import android.content.Context;  
  5. import android.database.sqlite.SQLiteDatabase;  
  6. import android.database.sqlite.SQLiteOpenHelper;  
  7.    
  8. public class DBHelper extends SQLiteOpenHelper  
  9. {  
  10.    
  11.     public static DBHelper mInstance = null;  
  12.    
  13.     /** 數據庫名稱 **/  
  14.     public static final String DATABASE_NAME = "location.db";  
  15.    
  16.     /** 數據庫版本號 **/  
  17.     private static final int DATABASE_VERSION = 1;  
  18.    
  19.     /** DB對象 **/  
  20.     SQLiteDatabase mDb = null;  
  21.    
  22.     Context mContext = null;  
  23.    
  24.     // 歸屬地  
  25.     public final static String TABLE_NAME = "location_date";  
  26.     public final static String ID = "_id";  
  27.     public final static String NUMBER = "number";  
  28.     public final static String LOCATION = "location";  
  29.     public final static String CITY = "city";  
  30.    
  31.     // 索引ID  
  32.     public final static int ID_INDEX = 0;  
  33.     public final static int NUMBER_INDEX = 1;  
  34.     public final static int LOCATION_INDEX = 2;  
  35.     public final static int CITY_INDEX = 3;  
  36.    
  37.     /** 數據庫SQL語句 創建歸屬地表 **/  
  38.     public static final String NAME_TABLE_CREATE = "create table location_date(" + "_id INTEGER PRIMARY KEY AUTOINCREMENT," + "number TEXT NOT NULL," + "city TEXT NOT NULL,"  
  39.             + "location TEXT NOT NULL);";  
  40.    
  41.     public final static String[] LOCATIONS =  
  42.     { "上海移動", "上海聯通", "雲南移動", "雲南聯通", "內蒙古移動", "內蒙古聯通", "北京移動", "北京聯通", "吉林移動", "吉林聯通", "四川移動", "四川聯通", "天津移動", "天津聯通", "寧夏移動", "寧夏聯通", "安徽移動", "安徽聯通", "山東移動", "山東聯通", "山西移動", "山西聯通", "廣東移動", "廣東聯通",  
  43.             "廣西移動", "廣西聯通", "新疆移動", "新疆聯通", "江蘇移動", "江蘇聯通", "江西移動", "江西聯通", "河北移動", "河北聯通", "河南移動", "河南聯通", "浙江移動", "浙江聯通", "海南移動", "海南聯通", "湖北移動", "湖北聯通", "湖南移動", "湖南聯通", "甘肅移動", "甘肅聯通", "福建移動",  
  44.             "福建聯通", "西藏移動", "西藏聯通", "貴州移動", "貴州聯通", "遼寧移動", "遼寧聯通", "重慶移動", "重慶聯通", "陝西移動", "陝西聯通", "青海移動", "青海聯通", "黑龍江移動", "黑龍江聯通" };  
  45.    
  46.     /** 單例模式 **/  
  47.     public static synchronized DBHelper getInstance(Context context)  
  48.     {  
  49.         if (mInstance == null)  
  50.         {  
  51.             mInstance = new DBHelper(context);  
  52.         }  
  53.         return mInstance;  
  54.     }  
  55.    
  56.     public DBHelper(Context context)  
  57.     {  
  58.         super(context, DATABASE_NAME, null, DATABASE_VERSION);  
  59.         // 得到數據庫對象  
  60.         mDb = getReadableDatabase();  
  61.         mContext = context;  
  62.     }  
  63.    
  64.     @Override  
  65.     public void onCreate(SQLiteDatabase db)  
  66.     {  
  67.         //創建數據庫  
  68.         db.execSQL(NAME_TABLE_CREATE);  
  69.     }  
  70.    
  71.     @Override  
  72.     public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)  
  73.     {  
  74.    
  75.     }  
  76.    
  77.     /** 
  78.      * 插入一條數據 
  79.      * 
  80.      * @param key 
  81.      * @param date 
  82.      */  
  83.     public void insert(String tablename, String key[], String date[])  
  84.     {  
  85.         ContentValues values = new ContentValues();  
  86.         for (int i = 0; i < key.length; i++)  
  87.         {  
  88.             values.put(key[i], date[i]);  
  89.         }  
  90.         mDb.insert(tablename, null, values);  
  91.     }  
  92.    
  93. }  

  數據庫寫入完畢後,然後將生成的數據庫從程序中拷貝至本地。如下圖所示,將本例程序的location.db文件拷貝至電腦中。

Android應用開發教程之十五:制作第三方數據庫與讀取

  然後使用數據庫查看軟件,來看一看我們生成的數據庫。因為我這裡使用的是mac在做開發,所以和以前寫用的數據庫查看軟件有點不一樣。如下圖所示,本地數據已經寫入到數據庫當中 , 下面說一下字段的含義:_id為升序具有唯一性 , number 表示號碼的前6位字段,city表示號碼歸屬地的城市,location:表示省級的運營商歸屬地。那麼到這一步我們的第三方數據庫文件就已經制作完畢。如果有朋友問能不能使用非Android程序生成的數據庫,那麼我建議最好不要用。或者你將系統生成的表android_metadata與sqlite_sequence表添加進你的數據庫試一試,因為這個數據庫一定要與Android生成出來的數據庫結構一樣。否則在部分Android手機上無法打開它db文件的對象。

Android應用開發教程之十五:制作第三方數據庫與讀取

  接著創建一個新android工程,用於我們查詢數據庫。首先將上面工程中生成的歸屬地數據庫文件location.db拷貝至新工程的raw文件夾中。在如下代碼中開始載入數據庫中的內容。

Java代碼
  1. import java.io.File;  
  2. import java.io.FileOutputStream;  
  3. import java.io.InputStream;  
  4.    
  5. import android.app.Activity;  
  6. import android.content.Context;  
  7. import android.database.Cursor;  
  8. import android.database.sqlite.SQLiteDatabase;  
  9. import android.os.Bundle;  
  10. import android.view.View;  
  11. import android.view.View.OnClickListener;  
  12. import android.widget.Button;  
  13. import android.widget.EditText;  
  14. import android.widget.TextView;  
  15. import android.widget.Toast;  
  16.    
  17. public class GetInfoActivity extends Activity  
  18. {  
  19.    
  20.     //文件的路徑  
  21.     public final static String URL = "/data/data/cn.location.xys/files";  
  22.     //數據庫文件  
  23.     public final static String DB_FILE_NAME = "location.db";  
  24.     // 歸屬地  
  25.     public final static String TABLE_NAME = "location_date";  
  26.     // 索引ID  
  27.     public final static int ID_INDEX = 0;  
  28.     public final static int NUMBER_INDEX = 1;  
  29.     public final static int LOCATION_INDEX = 2;  
  30.     public final static int CITY_INDEX = 3;  
  31.    
  32.     EditText editText = null;  
  33.     Button button = null;  
  34.     TextView textView = null;  
  35.     SQLiteDatabase db = null;  
  36.    
  37.     @Override  
  38.     protected void onCreate(Bundle savedInstanceState)  
  39.     {  
  40.    
  41.         super.onCreate(savedInstanceState);  
  42.    
  43.         setContentView(R.layout.getinfo);  
  44.         //首先將DB文件拷貝至程序內存當中  
  45.         //注解1  
  46.         if (copyDB())  
  47.         {  
  48.             //得到數據庫文件  
  49.             File file = new File(URL, DB_FILE_NAME);  
  50.             db = SQLiteDatabase.openOrCreateDatabase(file, null);  
  51.    
  52.             editText = (EditText) this.findViewById(R.id.edit);  
  53.             textView = (TextView) this.findViewById(R.id.location);  
  54.    
  55.             button = (Button) this.findViewById(R.id.button);  
  56.             button.setOnClickListener(new OnClickListener()  
  57.             {  
  58.    
  59.                 public void onClick(View v)  
  60.                 {  
  61.                     String editStr = editText.getText().toString();  
  62.                     if (editStr.length() == 11)  
  63.                     {  
  64.                         //輸入手機號碼  
  65.                         Cursor cursor = db.query("location_date", null, "number=?", new String[]{ editStr.substring(0, 6) }, null, null, null);  
  66.    
  67.                         if (cursor != null && cursor.moveToFirst())  
  68.                         {  
  69.                             //獲取號碼省級與市級歸屬地  
  70.                             String text = cursor.getString(LOCATION_INDEX) + cursor.getString(CITY_INDEX);  
  71.                             textView.setText(text);  
  72.                         }  
  73.                         else  
  74.                         {  
  75.                             Toast.makeText(getApplicationContext(), "未能在數據庫中查詢到您的手機號碼", Toast.LENGTH_SHORT).show();  
  76.                         }  
  77.                     } else  
  78.                     {  
  79.                         Toast.makeText(getApplicationContext(), "手機號碼為11位,重新輸入", Toast.LENGTH_SHORT).show();  
  80.                     }  
  81.    
  82.                 }  
  83.             });  
  84.         }  
  85.     }  
  86.    
  87.     // 將raw文件中的數據庫文件拷貝至手機中的程序內存當中  
  88.     public boolean copyDB()  
  89.     {  
  90.    
  91.         try  
  92.         {  
  93.             // 判斷程序內存中是否有拷貝後的文件  
  94.             if (!(new File(URL)).exists())  
  95.             {  
  96.                 InputStream is = getResources().openRawResource(R.raw.location);  
  97.                 FileOutputStream fos = this.openFileOutput(DB_FILE_NAME, Context.MODE_WORLD_READABLE);  
  98.                 // 一次拷貝的緩沖大小1M  
  99.                 byte[] buffer = new byte[1024 * 1024];  
  100.                 int count = 0;  
  101.                 // 循環拷貝數據庫文件  
  102.                 while ((count = is.read(buffer)) > 0)  
  103.                 {  
  104.                     fos.write(buffer, 0, count);  
  105.                 }  
  106.    
  107.                 fos.close();  
  108.                 is.close();  
  109.             }  
  110.             return true;  
  111.         } catch (Exception e)  
  112.         {  
  113.             e.printStackTrace();  
  114.             return false;  
  115.         }  
  116.     }  
  117.    
  118. }  

  注解1:首先將raw文件夾中的數據庫文件拷貝至程序內存當中,接著通過拷貝後的路徑獲取數據庫文件的對象。有了數據庫對象那麼增、刪、改、查的操作都可以執行啦。最後的效果圖如下所示,輸入手機號碼後點擊查詢,下方將現實手機號碼的歸屬地信息。

Android應用開發教程之十五:制作第三方數據庫與讀取

  源碼下載地址:http://vdisk.weibo.com/s/aa7gG

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved